Package org.gwt.mosaic.ui.client.layout.LayoutData

Examples of org.gwt.mosaic.ui.client.layout.LayoutData.ParsedSize


  /**
   * @param width the initial panel width to set
   */
  public void setPanelWidth(String width) {
    this.width = new ParsedSize(FloatParser.parseFloat(width, 0.0f),
        UnitParser.parseUnit(width, Unit.PX));
  }
View Full Code Here


  /**
   * @param height the height to set
   */
  public void setHeight(String height) {
    this.height = new ParsedSize(FloatParser.parseFloat(height, 0.0f),
        UnitParser.parseUnit(height, Unit.PX));
  }
View Full Code Here

TOP

Related Classes of org.gwt.mosaic.ui.client.layout.LayoutData.ParsedSize

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.