Package bibliothek.gui.dock.common.intern

Examples of bibliothek.gui.dock.common.intern.CommonDockable


  @Override
  protected Collection<Dockable> getClosingDockables( DockFrontendInternals frontend, Set<Dockable> visible ){
    Collection<Dockable> result = super.getClosingDockables( frontend, visible );
   
    for( MultipleCDockable dockable : control.getRegister().getMultipleDockables() ){
      CommonDockable intern = dockable.intern();
      if( !visible.contains( intern )){
        result.add( intern );
      }
    }
   
View Full Code Here


    public void deploy( CGrid grid ){
        DockableSplitDockTree tree = grid.toTree();
       
        for( Dockable dockable : tree.getDockables() ){
            if( dockable instanceof CommonDockable ){
                CommonDockable cdock = (CommonDockable)dockable;
                cdock.getDockable().setWorkingArea( this );
            }
        }
       
        getStation().dropTree( tree );
    }
View Full Code Here

TOP

Related Classes of bibliothek.gui.dock.common.intern.CommonDockable

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.