com.google.gwt.widgetideas.table.client
Class AbstractCellEditor.CellEditInfo<R>

java.lang.Object
  extended by com.google.gwt.widgetideas.table.client.AbstractCellEditor.CellEditInfo<R>
Type Parameters:
R - the type of the row value associated with the editor
Enclosing interface:
AbstractCellEditor<R>

public static class AbstractCellEditor.CellEditInfo<R>
extends java.lang.Object

The information about the cell to edit.


Constructor Summary
AbstractCellEditor.CellEditInfo(HTMLTable table, int row, int cell, R rowValue)
          Constructor.
 
Method Summary
 int getCell()
           
 int getRow()
           
 R getRowValue()
           
 HTMLTable getTable()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AbstractCellEditor.CellEditInfo

public AbstractCellEditor.CellEditInfo(HTMLTable table,
                                       int row,
                                       int cell,
                                       R rowValue)
Constructor.

Parameters:
table - the table that opened the editor
row - the row index
cell - the cell index
rowValue - the object associated with the row
Method Detail

getCell

public int getCell()
Returns:
the cell index

getRow

public int getRow()
Returns:
the row index

getRowValue

public R getRowValue()
Returns:
the row value associated with the row

getTable

public HTMLTable getTable()
Returns:
the table that opened the editor