Package org.spiderwiz.admin.data
Class TableData
java.lang.Object
org.spiderwiz.admin.data.TableData
@WizSerializable public class TableData extends Object
Holds the data used by SpiderAdmin to populate a table in an application page.
- See Also:
PageInfo
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TableData.RowData
Holds data to populate one table row. -
Constructor Summary
Constructors Constructor Description TableData()
-
Method Summary
Modifier and Type Method Description TableData.RowData
addRow()
Adds an empty row descriptor to the table.List<TableData.RowData>
getRowData()
Gets the value of the rowData property.
-
Constructor Details
-
TableData
public TableData()
-
-
Method Details
-
getRowData
Gets the value of the rowData property.The
rowData
property is a list of inner classes that hold data for each table row.- Returns:
- the rowData property.
-
addRow
Adds an empty row descriptor to the table.The returned object can be used to populate the row by calling its
addCell()
method for each of the row's cells.- Returns:
- the added object.
-