Uses of Class
com.google.gwt.widgetideas.table.client.AbstractCellEditor.CellEditInfo

Packages that use AbstractCellEditor.CellEditInfo
com.google.gwt.widgetideas.table.client   
 

Uses of AbstractCellEditor.CellEditInfo in com.google.gwt.widgetideas.table.client
 

Methods in com.google.gwt.widgetideas.table.client with parameters of type AbstractCellEditor.CellEditInfo
 void TextCellEditor.editCell(AbstractCellEditor.CellEditInfo<R> cellEditInfo, AbstractCellEditor.Callback<R> callback)
           
 void AbstractCellEditor.editCell(AbstractCellEditor.CellEditInfo<R> cellEditInfo, AbstractCellEditor.Callback<R> callback)
          Handle a request from the table to edit a cell.
 void ListCellEditor.editCell(AbstractCellEditor.CellEditInfo<R> cellEditInfo, AbstractCellEditor.Callback<R> callback)
           
 void InlineCellEditor.editCell(AbstractCellEditor.CellEditInfo<R> cellEditInfo, AbstractCellEditor.Callback<R> callback)
           
 void RadioCellEditor.editCell(AbstractCellEditor.CellEditInfo<R> cellEditInfo, AbstractCellEditor.Callback<R> callback)
           
 void AbstractCellEditor.Callback.onCancel(AbstractCellEditor.CellEditInfo<R> cellEditInfo)
          Use this callback to cancel the edit request.
 void AbstractCellEditor.Callback.onComplete(AbstractCellEditor.CellEditInfo<R> cellEditInfo, java.lang.Object value)
          Use this callback to return a value to the table.