com.vaadin.ui.
Class AbsoluteLayout.ComponentPosition
java.lang.Object
com.vaadin.ui.AbsoluteLayout.ComponentPosition
All Implemented Interfaces:
Enclosing class:
- extends Object
- implements Serializable
public class AbsoluteLayout.ComponentPosition
The CompontPosition class represents a components position within the absolute layout. It contains the attributes for left, right, top and bottom and the units used to specify them.
See Also:
Constructor Summary | |
---|---|
AbsoluteLayout.ComponentPosition()
|
Method Summary | |
---|---|
int |
getBottomUnits()
Gets the unit for the 'bottom' attribute |
Float |
getBottomValue()
Gets the 'bottom' attributes value using current units. |
String |
getCSSString()
Converts the internal values into a valid CSS string. |
int |
getLeftUnits()
Gets the unit for the 'left' attribute |
Float |
getLeftValue()
Gets the 'left' attributes value using current units. |
int |
getRightUnits()
Gets the unit for the 'right' attribute |
Float |
getRightValue()
Gets the 'right' attributes value in current units. |
int |
getTopUnits()
Gets the unit for the 'top' attribute |
Float |
getTopValue()
Gets the 'top' attributes value in current units. |
int |
getZIndex()
Gets the 'z-index' attribute. |
void |
setBottom(Float bottomValue,
int bottomUnits)
Sets the 'bottom' attribute; distance from the bottom of the component to the bottom edge of the layout. |
void |
setBottomUnits(int bottomUnits)
Sets the unit for the 'bottom' attribute |
void |
setBottomValue(Float bottomValue)
Sets the 'bottom' attribute value (distance from the bottom of the component to the bottom edge of the layout). |
void |
setCSSString(String css)
Sets the position attributes using CSS syntax. |
void |
setLeft(Float leftValue,
int leftUnits)
Sets the 'left' attribute; distance from the left of the component to the left edge of the layout. |
void |
setLeftUnits(int leftUnits)
Sets the unit for the 'left' attribute |
void |
setLeftValue(Float leftValue)
Sets the 'left' attribute value (distance from the left of the component to the left edge of the layout). |
void |
setRight(Float rightValue,
int rightUnits)
Sets the 'right' attribute; distance from the right of the component to the right edge of the layout. |
void |
setRightUnits(int rightUnits)
Sets the unit for the 'right' attribute |
void |
setRightValue(Float rightValue)
Sets the 'right' attribute value (distance from the right of the component to the right edge of the layout). |
void |
setTop(Float topValue,
int topUnits)
Sets the 'top' attribute; distance from the top of the component to the top edge of the layout. |
void |
setTopUnits(int topUnits)
Sets the unit for the 'top' attribute |
void |
setTopValue(Float topValue)
Sets the value of the 'top' attribute; distance from the top of the component to the top edge of the layout. |
void |
setZIndex(int zIndex)
Sets the 'z-index' attribute; the visual stacking order |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
AbsoluteLayout.ComponentPosition
public AbsoluteLayout.ComponentPosition()
Method Detail |
---|
setCSSString
public void setCSSString(String css)
- Parameters:
css
-
Sets the position attributes using CSS syntax. Attributes not
included in the string are reset to their unset states.
setCSSString("top:10px;left:20%;z-index:16;");
getCSSString
public String getCSSString()
- Returns:
- A valid CSS string
Converts the internal values into a valid CSS string.
setTop
public void setTop(Float topValue,
int topUnits)
- Parameters:
topValue
- The value of the 'top' attributetopUnits
- The unit of the 'top' attribute. See UNIT_SYMBOLS for a description of the available units.
Sets the 'top' attribute; distance from the top of the component to the top edge of the layout.
setRight
public void setRight(Float rightValue,
int rightUnits)
- Parameters:
rightValue
- The value of the 'right' attributerightUnits
- The unit of the 'right' attribute. See UNIT_SYMBOLS for a description of the available units.
Sets the 'right' attribute; distance from the right of the component to the right edge of the layout.
setBottom
public void setBottom(Float bottomValue,
int bottomUnits)
- Parameters:
bottomValue
- The value of the 'bottom' attributeunits
- The unit of the 'bottom' attribute. See UNIT_SYMBOLS for a description of the available units.
Sets the 'bottom' attribute; distance from the bottom of the component to the bottom edge of the layout.
setLeft
public void setLeft(Float leftValue,
int leftUnits)
- Parameters:
leftValue
- The value of the 'left' attributeunits
- The unit of the 'left' attribute. See UNIT_SYMBOLS for a description of the available units.
Sets the 'left' attribute; distance from the left of the component to the left edge of the layout.
setZIndex
public void setZIndex(int zIndex)
- Parameters:
zIndex
- The z-index for the component.
Sets the 'z-index' attribute; the visual stacking order
setTopValue
public void setTopValue(Float topValue)
- Parameters:
topValue
- The value of the 'left' attribute
Sets the value of the 'top' attribute; distance from the top of the component to the top edge of the layout.
getTopValue
public Float getTopValue()
- Returns:
- The value of the 'top' attribute, null if not set
- See Also:
getTopUnits()
Gets the 'top' attributes value in current units.
getRightValue
public Float getRightValue()
- Returns:
- The value of the 'right' attribute, null if not set
- See Also:
getRightUnits()
Gets the 'right' attributes value in current units.
setRightValue
public void setRightValue(Float rightValue)
- Parameters:
rightValue
- The value of the 'right' attribute- See Also:
setRightUnits(int)
Sets the 'right' attribute value (distance from the right of the component to the right edge of the layout). Currently active units are maintained.
getBottomValue
public Float getBottomValue()
- Returns:
- The value of the 'bottom' attribute, null if not set
- See Also:
getBottomUnits()
Gets the 'bottom' attributes value using current units.
setBottomValue
public void setBottomValue(Float bottomValue)
- Parameters:
bottomValue
- The value of the 'bottom' attribute- See Also:
setBottomUnits(int)
Sets the 'bottom' attribute value (distance from the bottom of the component to the bottom edge of the layout). Currently active units are maintained.
getLeftValue
public Float getLeftValue()
- Returns:
- The value of the 'left' attribute, null if not set
- See Also:
getLeftUnits()
Gets the 'left' attributes value using current units.
setLeftValue
public void setLeftValue(Float leftValue)
- Parameters:
leftValue
- The value of the 'left' CSS-attribute- See Also:
setLeftUnits(int)
Sets the 'left' attribute value (distance from the left of the component to the left edge of the layout). Currently active units are maintained.
getTopUnits
public int getTopUnits()
- Returns:
- See
Sizeable
UNIT_SYMBOLS for a description of the available units.
Gets the unit for the 'top' attribute
setTopUnits
public void setTopUnits(int topUnits)
- Parameters:
topUnits
- SeeSizeable
UNIT_SYMBOLS for a description of the available units.
Sets the unit for the 'top' attribute
getRightUnits
public int getRightUnits()
- Returns:
- See
Sizeable
UNIT_SYMBOLS for a description of the available units.
Gets the unit for the 'right' attribute
setRightUnits
public void setRightUnits(int rightUnits)
- Parameters:
rightUnits
- SeeSizeable
UNIT_SYMBOLS for a description of the available units.
Sets the unit for the 'right' attribute
getBottomUnits
public int getBottomUnits()
- Returns:
- See
Sizeable
UNIT_SYMBOLS for a description of the available units.
Gets the unit for the 'bottom' attribute
setBottomUnits
public void setBottomUnits(int bottomUnits)
- Parameters:
bottomUnits
- SeeSizeable
UNIT_SYMBOLS for a description of the available units.
Sets the unit for the 'bottom' attribute
getLeftUnits
public int getLeftUnits()
- Returns:
- See
Sizeable
UNIT_SYMBOLS for a description of the available units.
Gets the unit for the 'left' attribute
setLeftUnits
public void setLeftUnits(int leftUnits)
- Parameters:
leftUnits
- SeeSizeable
UNIT_SYMBOLS for a description of the available units.
Sets the unit for the 'left' attribute
getZIndex
public int getZIndex()
- Returns:
- the zIndex The z-index attribute
Gets the 'z-index' attribute.
toString
public String toString()