com.google.gwt.widgetideas.table.client
Class TableModel.Response<R>

java.lang.Object
  extended by com.google.gwt.widgetideas.table.client.TableModel.Response<R>
Type Parameters:
R - the data type of the row values
Direct Known Subclasses:
ClientTableModel.ClientResponse, TableModel.SerializableResponse
Enclosing class:
TableModel<R>

public abstract static class TableModel.Response<R>
extends java.lang.Object

A response from the TableModel.


Constructor Summary
TableModel.Response()
          Constructor.
TableModel.Response(java.util.List<R> rowValues)
          Constructor.
 
Method Summary
abstract  java.util.Iterator<java.util.Iterator<java.lang.Object>> getIterator()
          Gets the iterator associated with the row data generated by the TableModel.Response.
 java.util.List<R> getRowValues()
          Get a list of objects associated with the retrieved rows.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TableModel.Response

public TableModel.Response()
Constructor.


TableModel.Response

public TableModel.Response(java.util.List<R> rowValues)
Constructor.

Parameters:
rowValues - the values to associate with each row
Method Detail

getIterator

public abstract java.util.Iterator<java.util.Iterator<java.lang.Object>> getIterator()
Gets the iterator associated with the row data generated by the TableModel.Response.

Returns:
the rows data

getRowValues

public java.util.List<R> getRowValues()
Get a list of objects associated with the retrieved rows.

Returns:
the list of objects associated with the retrieved row