com.google.gwt.widgetideas.table.client
Interface AbstractCellEditor<R>

Type Parameters:
R - the type of the row value associated with the editor
All Known Implementing Classes:
InlineCellEditor, ListCellEditor, RadioCellEditor, TextCellEditor

public interface AbstractCellEditor<R>

Cell editors provide a mechanism to edit cells.


Nested Class Summary
static interface AbstractCellEditor.Callback<R>
          Callback for AbstractCellEditor.
static class AbstractCellEditor.CellEditInfo<R>
          The information about the cell to edit.
 
Method Summary
 void editCell(AbstractCellEditor.CellEditInfo<R> cellEditInfo, AbstractCellEditor.Callback<R> callback)
          Handle a request from the table to edit a cell.
 

Method Detail

editCell

void editCell(AbstractCellEditor.CellEditInfo<R> cellEditInfo,
              AbstractCellEditor.Callback<R> callback)
Handle a request from the table to edit a cell.

Parameters:
cellEditInfo - information about the source of the edit request
callback - callback used when editing is complete