Package bibliothek.gui.dock.common

Examples of bibliothek.gui.dock.common.SingleCDockableFactory


    public CommonDockable layout( CommonSingleDockableLayout layout, Map<Integer, Dockable> children, PlaceholderStrategy placeholders ) {
        return layout( layout, placeholders );
    }

    public CommonDockable layout( CommonSingleDockableLayout layout, PlaceholderStrategy placeholders ) {
        SingleCDockableFactory backup = getFactory( layout.getId() );
        if( backup == null )
            return null;
       
        SingleCDockable dockable = backup.createBackup( layout.getId() );
        if( dockable == null )
            return null;
       
        String factoryId = dockable.intern().getFactoryID();
        if( !factoryId.equals( getID() )){
View Full Code Here


   * unique identifier <code>id</code>.
   * @param id the unique identifier of a {@link SingleCDockable}
   * @return the new station or <code>null</code> if <code>id</code> is unknown
   */
  protected CommonDockStation<?, ?> createStation( String id ){
      SingleCDockableFactory factory = singleDockableFactory.getFactory( id );
      if( factory == null ){
        return null;
      }
     
      SingleCDockable dockable = factory.createBackup( id );
      if( dockable == null ){
        return null;
      }
     
        String factoryId = dockable.intern().getFactoryID();
View Full Code Here

TOP

Related Classes of bibliothek.gui.dock.common.SingleCDockableFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.