Class TableRow
java.lang.Object
org.kuali.rice.krad.uif.layout.collections.TableRow
- All Implemented Interfaces:
Serializable
Holds the components that make up a row within the table layout.
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetColumn(int columnIndex) Returns the field instance that makes up the column with the given index.List of field components that make up the row's columns.intReturns the number of columns within the row.voidsetColumns(List<Field> columns)
-
Constructor Details
-
TableRow
public TableRow()Empty Constructor. -
TableRow
Constructor with columns for the row.- Parameters:
columns- list of fields that make up the row's columns
-
-
Method Details
-
getColumns
List of field components that make up the row's columns.- Returns:
- list of field components
-
setColumns
- See Also:
-
getColumn
Returns the field instance that makes up the column with the given index.- Parameters:
columnIndex- index for the column to return- Returns:
- field instance at that column, or null if column does not exist
-
getNumberOfColumns
public int getNumberOfColumns()Returns the number of columns within the row.- Returns:
- number of columns
-