org.apache.pivot.wtk
Interface TableView.RowEditor

All Known Implementing Classes:
TableViewRowEditor
Enclosing class:
TableView

public static interface TableView.RowEditor

Table view row editor interface.


Method Summary
 void beginEdit(TableView tableView, int rowIndex, int columnIndex)
          Called to begin editing a table row.
 void endEdit(boolean result)
          Terminates an edit operation.
 boolean isEditing()
          Tests whether an edit is currently in progress.
 

Method Detail

beginEdit

void beginEdit(TableView tableView,
               int rowIndex,
               int columnIndex)
Called to begin editing a table row.

Parameters:
tableView -
rowIndex -
columnIndex -

endEdit

void endEdit(boolean result)
Terminates an edit operation.

Parameters:
result - true to perform the edit; false to cancel it.

isEditing

boolean isEditing()
Tests whether an edit is currently in progress.