Interface RecordActionTable.ICalculatedField<R extends PersistentRecord>
- 
- All Superinterfaces:
 org.apache.wicket.util.io.IClusterable,java.io.Serializable
- Enclosing class:
 - RecordActionTable<R extends PersistentRecord>
 
public static interface RecordActionTable.ICalculatedField<R extends PersistentRecord> extends org.apache.wicket.util.io.IClusterable 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetFieldvalue(R record)Return an object to display.java.lang.StringgetHeaderKey() 
 - 
 
- 
- 
Method Detail
- 
getHeaderKey
java.lang.String getHeaderKey()
 
- 
getFieldvalue
java.lang.Object getFieldvalue(R record)
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. 
 - 
 
 -