pivot.wtk
Interface TableView.RowEditor

All Superinterfaces:
Editor
All Known Implementing Classes:
TableViewCellEditor, TableViewRowEditor
Enclosing class:
TableView

public static interface TableView.RowEditor
extends Editor

Table row editor interface. gbrown


Method Summary
 void edit(TableView tableView, int rowIndex, int columnIndex)
          Notifies the editor that editing should begin.
 
Methods inherited from interface pivot.wtk.Editor
cancel, isEditing, save
 

Method Detail

edit

void edit(TableView tableView,
          int rowIndex,
          int columnIndex)
Notifies the editor that editing should begin. If the editor is currently installed on the table view, the skin may choose to call this method when the user executes the appropriate gesture (as defined by the skin).

Parameters:
tableView - The table view
rowIndex - The row index of the cell to edit
columnIndex - The column index of the cell to edit
See Also:
TableView.setRowEditor(RowEditor)