java.lang.Object
org.kuali.rice.krad.uif.layout.collections.TableRow
All Implemented Interfaces:
Serializable

public class TableRow extends Object implements Serializable
Holds the components that make up a row within the table layout.
Author:
Kuali Rice Team (rice.collab@kuali.org)
See Also:
  • Constructor Details

    • TableRow

      public TableRow()
      Empty Constructor.
    • TableRow

      public TableRow(List<Field> columns)
      Constructor with columns for the row.
      Parameters:
      columns - list of fields that make up the row's columns
  • Method Details

    • getColumns

      public List<Field> getColumns()
      List of field components that make up the row's columns.
      Returns:
      list of field components
    • setColumns

      public void setColumns(List<Field> columns)
      See Also:
    • getColumn

      public Field getColumn(int columnIndex)
      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