public interface ITableColumn
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getColumnName()
Method getColumnName provides the name of the column.
|
org.apache.tapestry.IRender |
getColumnRenderer(org.apache.tapestry.IRequestCycle objCycle,
ITableModelSource objSource)
Method getColumnRenderer provides a renderer that takes care of rendering
the column in the table header.
|
java.util.Comparator |
getComparator()
Method getComparator returns the Comparator to be used to sort
the data in the table according to this column.
|
boolean |
getSortable()
Method getSortable declares whether the column allows sorting.
|
org.apache.tapestry.IRender |
getValueRenderer(org.apache.tapestry.IRequestCycle objCycle,
ITableModelSource objSource,
java.lang.Object objRow)
Method getValueRenderer provides a renderer for presenting the value of a
particular row in the current column.
|
java.lang.String getColumnName()
boolean getSortable()
java.util.Comparator getComparator()
org.apache.tapestry.IRender getColumnRenderer(org.apache.tapestry.IRequestCycle objCycle, ITableModelSource objSource)
objCycle
- the current request cycleobjSource
- a component that can provide the table model (typically TableView)org.apache.tapestry.IRender getValueRenderer(org.apache.tapestry.IRequestCycle objCycle, ITableModelSource objSource, java.lang.Object objRow)
objCycle
- the current request cycleobjSource
- a component that can provide the table model (typically TableView)objRow
- the row data