| java.lang.Object de.jwic.controls.layout.TableData
TableData | public class TableData implements Serializable(Code) | | The TableData class is intended to hold specific layoutdata
of a single control.
The TableData is used in the TableLayoutContainer to layout the
controls. At the moment simple layoutinfos like align, width,
height etc. are possible.
author: Ronny Pfretzschner author: Florian Lippisch |
Constructor Summary | |
public | TableData() Default Constructor. | public | TableData(String align, int colSpan, int rowSpan) Construct a new TableData with a specified alignment, row- and colspan. | public | TableData(String align, String valign, int colSpan, int rowSpan) Construct a new TableData with a specified alignment, row- and colspan. |
TableData | public TableData()(Code) | | Default Constructor.
|
TableData | public TableData(String align, int colSpan, int rowSpan)(Code) | | Construct a new TableData with a specified alignment, row- and colspan.
Parameters: align - Parameters: colSpan - Parameters: rowSpan - |
TableData | public TableData(String align, String valign, int colSpan, int rowSpan)(Code) | | Construct a new TableData with a specified alignment, row- and colspan.
Parameters: align - Parameters: colSpan - Parameters: rowSpan - |
getCSSClass | public String getCSSClass()(Code) | | Returns the sCSSClass. |
getColSpan | public int getColSpan()(Code) | | Returns the colSpan. |
getHeight | public String getHeight()(Code) | | If the property grabVerticalSize is set true,
this returns 100%.
Returns the height. |
getRowSpan | public int getRowSpan()(Code) | | Returns the rowSpan. |
getVAlign | public String getVAlign()(Code) | | Returns the vAlign. |
getWidth | public String getWidth()(Code) | | If the property grabHorizontalSize is set true,
this returns 100%.
Returns the width. |
setAlign | public void setAlign(String align)(Code) | | Parameters: align - The align to set. |
setCSSClass | public void setCSSClass(String cssClass)(Code) | | Parameters: class1 - The sCSSClass to set. |
setColSpan | public void setColSpan(int colSpan)(Code) | | Parameters: colSpan - The colSpan to set. |
setHeight | public void setHeight(String height)(Code) | | Parameters: height - The height to set. |
setRowSpan | public void setRowSpan(int rowSpan)(Code) | | Parameters: rowSpan - The rowSpan to set. |
setVAlign | public void setVAlign(String align)(Code) | | Parameters: align - The vAlign to set. |
setWidth | public void setWidth(String width)(Code) | | Parameters: width - The width to set. |
|
|