org.apache.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.


Nested Class Summary
static class TableView.RowEditor.RowEditorListenerList
          Row editor listener list.
 
Method Summary
 void editRow(TableView tableView, int rowIndex, int columnIndex)
          Notifies the editor that editing should begin.
 ListenerList<TableView.RowEditorListener> getRowEditorListeners()
          Gets the row editor listener list.
 
Methods inherited from interface org.apache.pivot.wtk.Editor
cancelEdit, isEditing, saveChanges
 

Method Detail

editRow

void editRow(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 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)

getRowEditorListeners

ListenerList<TableView.RowEditorListener> getRowEditorListeners()
Gets the row editor listener list.