Package bibliothek.gui.dock

Examples of bibliothek.gui.dock.DockHierarchyLock


   */
  @LayoutLocked(locked=false)
  protected class SplitInserter extends DockStationAdapter {
    public void dockableAdded( DockStation station, final Dockable dockable ){
      if( !(dockable instanceof SplitDockStation) ) {
        DockHierarchyLock lock = control.getController().getHierarchyLock();

        lock.onRelease( new Runnable(){
          public void run(){
            checkAndReplace( dockable );
          }
        });
      }
View Full Code Here


   * Queues up a call to {@link #autoRemove()}
   */
  protected void tryAutoRemove(){
    CControl control = getControl();
    if( control != null ){
      DockHierarchyLock lock = control.getController().getHierarchyLock();
      lock.onRelease( new Runnable(){
        public void run(){
          autoRemove();
        }
      } );
    }
View Full Code Here

TOP

Related Classes of bibliothek.gui.dock.DockHierarchyLock

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.