com.jidesoft.grid
Interface ValueProvider
- All Known Implementing Classes:
- RowTableModelValueProvider, RowValueProvider, TableModelValueProvider
public interface ValueProvider
ValueProvider is an interface to retrieve a cell value from a table model. We need it because we need a
way to retrieve value from Row for TreeTableModel even when the Row is not displayed in the UI.
|
Method Summary |
Object |
getValueAt(int row,
int column)
Gets the value from the designated rowIndex and columnIndex. |
getValueAt
Object getValueAt(int row,
int column)
- Gets the value from the designated rowIndex and columnIndex.
- Parameters:
row - the row index.column - the column index.
- Returns:
- the value at the columnIndex of a Row.