com.jidesoft.grid
Class RowTableModelValueProvider
java.lang.Object
com.jidesoft.grid.RowTableModelValueProvider
- All Implemented Interfaces:
- ValueProvider
public class RowTableModelValueProvider
- extends Object
- implements ValueProvider
A RowTableModelValueProvider
is a ValueProvider
which retrieves a value from a table model
or a row model.
Method Summary |
Row |
getRowAt(int rowIndex)
|
Object |
getValueAt(int row,
int column)
Gets the value from the designated rowIndex and columnIndex in the _model. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
RowTableModelValueProvider
public RowTableModelValueProvider(TableRowModel model)
getValueAt
public Object getValueAt(int row,
int column)
- Gets the value from the designated rowIndex and columnIndex in the _model.
- Specified by:
getValueAt
in interface ValueProvider
- Parameters:
row
- the row index.column
- the column index.
- Returns:
- the value at the columnIndex of a Row.
getRowAt
public Row getRowAt(int rowIndex)