Package com.jgoodies.common.display
Interface Displayable
-
public interface Displayable
Describes objects with a default String presentation. Useful for implementing reusable object presentations in Formats, ListCellRenderers, TableCellRenderers, etc. If the object shall have a special default presentation in lists or tables, they may additionally implementListDisplayable
and/orTableDisplayable
.Used by the reusable JGoodies list and table cell renderers:
JGDisplayableListCellRenderer
andJGDisplayableTableCellRenderer
.- Since:
- 1.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDisplayString()
Returns this object's default String presentation for views such as read-only text fields, list, tables, tree nodes, etc.
-