SPT RWT Application API

Uses of Class
com.sptci.rwt.Row

Packages that use Row
com.sptci.rwt A database abstraction API for analysing and interacting with relational databases using JDBC. 
com.sptci.rwt.webui The primary package for the Echo2/EPNG based web UI built around the com.sptci.rwt database abstraction API. 
 

Uses of Row in com.sptci.rwt
 

Fields in com.sptci.rwt with type parameters of type Row
private  List<Row> Rows.rows
          The collection of Row instances contained in result set.
 

Methods in com.sptci.rwt that return types with arguments of type Row
 List<Row> Rows.getRows()
          Returns Rows.rows.
 

Methods in com.sptci.rwt with parameters of type Row
protected  void Rows.addRow(Row row)
          Add the specified row to Rows.rows collection.
private  void ExcelGenerator.createHeader(Row row, org.apache.poi.hssf.usermodel.HSSFWorkbook workbook, org.apache.poi.hssf.usermodel.HSSFSheet sheet, short index)
          Create the header row for the excel sheet using the Column.name field.
private  void ExcelGenerator.createRow(Row row, org.apache.poi.hssf.usermodel.HSSFWorkbook workbook, org.apache.poi.hssf.usermodel.HSSFSheet sheet, short index)
          Create a header row for the excel sheet using the Column.name field.
 

Method parameters in com.sptci.rwt with type arguments of type Row
protected  void Rows.setRows(List<Row> rows)
          Set Rows.rows.
 

Uses of Row in com.sptci.rwt.webui
 

Fields in com.sptci.rwt.webui with type parameters of type Row
private  List<Row> RowsTableModel.rows
          The list used as the backing store for this model.
 


SPT RWT Application API