|
Oracle UIX API Reference Release 2.1.22.0.0 B12196-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.cabo.ui.DeprecatedUINode | +--oracle.cabo.ui.BaseUINode | +--oracle.cabo.ui.BaseMutableUINode | +--oracle.cabo.ui.beans.BaseWebBean | +--oracle.cabo.ui.beans.MarlinBean | +--oracle.cabo.ui.beans.layout.TableLayoutBean
A TableLayout is a thin wrapper around the HTML <table> element. It contains a series of row layout elements.
<tableLayout width="75%" borderWidth="3" cellSpacing="10" hAlign="center"> <contents> <rowLayout> <contents> First Column <cellFormat vAlign="bottom"> <contents> SecondColumn </contents> </cellFormat> <flowLayout> <contents> Third Column <spacer height="100" width="1"/> </contents> </flowLayout> </contents> </rowLayout> <rowLayout> <contents> <header text="UIX Components"/> <cellFormat columnSpan="2"> <contents> <header text="UIX Controller"/> </contents> </cellFormat> </contents> </rowLayout> </contents> </tableLayout>
Constructor Summary | |
|
TableLayoutBean()
Construct an instance of the TableLayoutBean. |
protected |
TableLayoutBean(boolean ignored,
java.lang.String localName)
Construct an instance of the TableLayoutBean. |
|
TableLayoutBean(java.lang.String width)
Construct an instance of the TableLayoutBean. |
Method Summary | |
RowLayoutBean |
addRowLayout(RowLayoutBean rowLayout)
Adds a row of the table. |
int |
getBorderWidth()
Gets the border width around each cell. |
static int |
getBorderWidth(MutableUINode bean)
Gets the border width around each cell. |
int |
getCellPadding()
Gets the spacing within cells. |
static int |
getCellPadding(MutableUINode bean)
Gets the spacing within cells. |
int |
getCellSpacing()
Gets the spacing between cells. |
static int |
getCellSpacing(MutableUINode bean)
Gets the spacing between cells. |
java.lang.String |
getHAlign()
Gets the horizontal alignment of the table. |
static java.lang.String |
getHAlign(MutableUINode bean)
Gets the horizontal alignment of the table. |
RowLayoutBean |
getRowLayout(int index)
Retrieves a row of the table. |
java.lang.String |
getSummary()
Gets The summary of the table's purpose and structure for user agents rendering to non-visual media. |
static java.lang.String |
getSummary(MutableUINode bean)
Gets The summary of the table's purpose and structure for user agents rendering to non-visual media. |
java.lang.String |
getWidth()
Gets the preferred total width of the layout. |
static java.lang.String |
getWidth(MutableUINode bean)
Gets the preferred total width of the layout. |
RowLayoutBean |
removeRowLayout(int index)
Removes a row of the table. |
void |
setBorderWidth(int borderWidth)
Sets the border width around each cell. |
static void |
setBorderWidth(MutableUINode bean,
int borderWidth)
Sets the border width around each cell. |
void |
setCellPadding(int cellPadding)
Sets the spacing within cells. |
static void |
setCellPadding(MutableUINode bean,
int cellPadding)
Sets the spacing within cells. |
void |
setCellSpacing(int cellSpacing)
Sets the spacing between cells. |
static void |
setCellSpacing(MutableUINode bean,
int cellSpacing)
Sets the spacing between cells. |
static void |
setHAlign(MutableUINode bean,
java.lang.String hAlign)
Sets the horizontal alignment of the table. |
void |
setHAlign(java.lang.String hAlign)
Sets the horizontal alignment of the table. |
static void |
setSummary(MutableUINode bean,
java.lang.String summary)
Sets The summary of the table's purpose and structure for user agents rendering to non-visual media. |
void |
setSummary(java.lang.String summary)
Sets The summary of the table's purpose and structure for user agents rendering to non-visual media. |
static void |
setTranslatableSummary(MutableUINode bean,
java.lang.String bundleName,
java.lang.String key)
Binds to a ResourceBundle the The summary of the table's purpose and structure for user agents rendering to non-visual media. |
void |
setTranslatableSummary(java.lang.String bundleName,
java.lang.String key)
Binds to a ResourceBundle the The summary of the table's purpose and structure for user agents rendering to non-visual media. |
void |
setWidth(int width)
Sets the preferred total width of the layout. |
static void |
setWidth(MutableUINode bean,
int width)
Sets the preferred total width of the layout. |
static void |
setWidth(MutableUINode bean,
java.lang.String width)
Sets the preferred total width of the layout. |
void |
setWidth(java.lang.String width)
Sets the preferred total width of the layout. |
Methods inherited from class oracle.cabo.ui.beans.MarlinBean |
isEqualMarlinName |
Methods inherited from class oracle.cabo.ui.BaseUINode |
getAttributeNames, getAttributeValue, getAttributeValueImpl, getChildArray, getChildNames, getIndexedChild, getIndexedChild, getIndexedChildCount, getLocalName, getNamedChild, getNamespaceURI, getNodeID, getNodeRole, getPreorderDescendentAttributeValue, getRawAttributeValue, getRenderedUINode, getRenderer, getRenderer, render, render, toString |
Methods inherited from class oracle.cabo.ui.DeprecatedUINode |
getAttributeValue, getChildNames, getNamedChild |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface oracle.cabo.ui.UINode |
getAttributeNames, getAttributeValue, getAttributeValue, getChildNames, getChildNames, getIndexedChild, getIndexedChild, getIndexedChildCount, getLocalName, getNamedChild, getNamedChild, getNamespaceURI, getNodeID, getNodeRole, getRawAttributeValue, render, render |
Constructor Detail |
public TableLayoutBean()
public TableLayoutBean(java.lang.String width)
width
- the preferred total width of the layout.protected TableLayoutBean(boolean ignored, java.lang.String localName)
Method Detail |
public final RowLayoutBean getRowLayout(int index)
public final RowLayoutBean addRowLayout(RowLayoutBean rowLayout)
public final RowLayoutBean removeRowLayout(int index)
public final java.lang.String getWidth()
public final void setWidth(java.lang.String width)
public final void setWidth(int width)
public final java.lang.String getHAlign()
public final void setHAlign(java.lang.String hAlign)
public final int getCellSpacing()
public final void setCellSpacing(int cellSpacing)
public final int getCellPadding()
public final void setCellPadding(int cellPadding)
public final int getBorderWidth()
public final void setBorderWidth(int borderWidth)
public final java.lang.String getSummary()
public final void setSummary(java.lang.String summary)
public final void setTranslatableSummary(java.lang.String bundleName, java.lang.String key)
bundleName
- the name of the ResourceBundlekey
- the key of the string to retrieve from the ResourceBundlepublic static java.lang.String getWidth(MutableUINode bean)
public static void setWidth(MutableUINode bean, java.lang.String width)
public static void setWidth(MutableUINode bean, int width)
public static java.lang.String getHAlign(MutableUINode bean)
public static void setHAlign(MutableUINode bean, java.lang.String hAlign)
public static int getCellSpacing(MutableUINode bean)
public static void setCellSpacing(MutableUINode bean, int cellSpacing)
public static int getCellPadding(MutableUINode bean)
public static void setCellPadding(MutableUINode bean, int cellPadding)
public static int getBorderWidth(MutableUINode bean)
public static void setBorderWidth(MutableUINode bean, int borderWidth)
public static java.lang.String getSummary(MutableUINode bean)
public static void setSummary(MutableUINode bean, java.lang.String summary)
public static void setTranslatableSummary(MutableUINode bean, java.lang.String bundleName, java.lang.String key)
bundleName
- the name of the ResourceBundlekey
- the key of the string to retrieve from the ResourceBundle
|
Oracle UIX API Reference Release 2.1.22.0.0 B12196-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |