Package bibliothek.gui.dock.common.location

Examples of bibliothek.gui.dock.common.location.CMinimizeAreaLocation


    public CStationPerspective createPerspective(){
      return new CMinimizePerspective( getUniqueId(), getTypeId() );
    }
   
    public CLocation getStationLocation() {
        return new CMinimizeAreaLocation( this );
    }
View Full Code Here


   * Creates a new location representing a minimize area.
   * @param area the area to which the location refers
   * @return the new location
   */
  public static CMinimizeAreaLocation minimized( CMinimizeArea area ){
      return new CMinimizeAreaLocation( area );
  }
View Full Code Here

     * @param area the area to which the location refers
     * @param index the exact location on <code>area</code>
     * @return the new location
     */
  public static CFlapIndexLocation minimized( CMinimizeArea area, int index ){
        return new CMinimizeAreaLocation( area ).insert( index );
    }
View Full Code Here

TOP

Related Classes of bibliothek.gui.dock.common.location.CMinimizeAreaLocation

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.