package com.onaro.sanscreen.client.view.tabular.value; /** * Data model of a single table cell.

* The value returned by {@link #getDisplay()} is used for presentation in the table.
* The implementation of {@link Comparable#compareTo(java.lang.Object)} is used for sorting the table rows accroding to TableValue
*/ public interface TableValue extends Comparable{ /** * Returns an object representing the TableValue that can be used by the cell renderer for presentation.
* Usually, this method will return a string */ public Object getDisplay(); }