Package bibliothek.gui.dock.common.intern

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


      }
      if( destination == null ){
        throw new IllegalArgumentException( "destination is null" );
      }
     
      CDockFrontend frontend = control.getOwner().intern();
      Setting layout = frontend.getSetting( source );
      if( layout == null ){
        throw new IllegalArgumentException( "no perspective registered with name '" + source + "'" );
      }
      frontend.setSetting( destination, layout );
      frontend.delete( source );
     
      if( source.equals( frontend.getCurrentSetting() )){
        frontend.setCurrentSettingName( destination );
      }
    }
View Full Code Here

TOP

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

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.