| |
|
| java.lang.Object javax.faces.model.DataModel javax.faces.model.ResultSetDataModel
ResultSetDataModel | public class ResultSetDataModel extends DataModel (Code) | | see Javadoc of JSF Specification
author: Thomas Spiegl (latest modification by $Author: mbr $) author: Martin Marinschek version: $Revision: 512227 $ $Date: 2007-02-27 13:25:16 +0100 (Di, 27 Feb 2007) $ |
ResultSetDataModel | public ResultSetDataModel()(Code) | | |
getRowCount | public int getRowCount()(Code) | | We don't know how many rows the result set has without scrolling
through the whole thing.
|
getRowData | public Object getRowData()(Code) | | Get the actual data of this row
wrapped into a map.
The specification is very strict about what has to be
returned from here, so check the spec before
modifying anything here.
|
getRowIndex | public int getRowIndex()(Code) | | |
isRowAvailable | public boolean isRowAvailable()(Code) | | |
setRowIndex | public void setRowIndex(int rowIndex)(Code) | | |
|
|
|