Package bibliothek.gui.dock.frontend

Examples of bibliothek.gui.dock.frontend.SettingsBlop


  /**
   * Sets the name of the current layout.
   * @param name the name of the current layout, can be <code>null</code>
   */
  public void setPerspectiveName( String name ){
    SettingsBlop blop = resource.getSettings();
    blop.setCurrent( name, blop.getCurrentSetting() );
  }
View Full Code Here


  /**
   * Sets the raw data of the layout that should be loaded.
   * @param setting the new layout, not <code>null</code>
   */
  public void setSetting( CSetting setting ){
    SettingsBlop blop = resource.getSettings();
    blop.setCurrent( blop.getCurrentName(), setting );
  }
View Full Code Here

TOP

Related Classes of bibliothek.gui.dock.frontend.SettingsBlop

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.