Interface ActionTable.IField<R>
- 
- All Superinterfaces:
- org.apache.wicket.util.io.IClusterable,- java.io.Serializable
 - Enclosing class:
- ActionTable<R>
 
 public static interface ActionTable.IField<R> extends org.apache.wicket.util.io.IClusterableRepresents a field that will be turned into a table column in this action table. Needs a header and the ability to derive a value for each row of the table.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetFieldValue(R item)Return an object to display.java.lang.StringgetHeaderKey()
 
- 
- 
- 
Method Detail- 
getHeaderKeyjava.lang.String getHeaderKey() 
 - 
getFieldValuejava.lang.Object getFieldValue(R item) Return an object to display. If the object is a String, it will be displayed directly, otherwise, it will pass through wicket's converter mechanism. If the object is a collection, the contents will be displayed in a bullet list.
 
- 
 
-