Uses of Interface
org.apache.pivot.wtk.TableView.RowEditor

Packages that use TableView.RowEditor
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows. 
org.apache.pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. 
 

Uses of TableView.RowEditor in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return TableView.RowEditor
 TableView.RowEditor TableView.getRowEditor()
          Returns the editor used to edit rows in this table.
 

Methods in org.apache.pivot.wtk with parameters of type TableView.RowEditor
 void TableView.RowEditor.RowEditorListenerList.changesSaved(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
           
 void TableView.RowEditorListener.changesSaved(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
          Called when changes have been saved.
 void TableView.RowEditorListener.Adapter.changesSaved(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
           
 void TableView.RowEditor.RowEditorListenerList.editCancelled(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
           
 void TableView.RowEditorListener.editCancelled(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
          Called when an edit has been cancelled.
 void TableView.RowEditorListener.Adapter.editCancelled(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
           
 void TableView.RowEditor.RowEditorListenerList.editRowVetoed(TableView.RowEditor rowEditor, Vote reason)
           
 void TableView.RowEditorListener.editRowVetoed(TableView.RowEditor rowEditor, Vote reason)
          Called when a row edit was vetoed by a listener in the preview event.
 void TableView.RowEditorListener.Adapter.editRowVetoed(TableView.RowEditor rowEditor, Vote reason)
           
 Vote TableView.RowEditor.RowEditorListenerList.previewEditRow(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
           
 Vote TableView.RowEditorListener.previewEditRow(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
          Called to preview a row edit.
 Vote TableView.RowEditorListener.Adapter.previewEditRow(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
           
 Vote TableView.RowEditor.RowEditorListenerList.previewSaveChanges(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex, Dictionary<String,Object> changes)
           
 Vote TableView.RowEditorListener.previewSaveChanges(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex, Dictionary<String,Object> changes)
          Called to preview a save.
 Vote TableView.RowEditorListener.Adapter.previewSaveChanges(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex, Dictionary<String,Object> changes)
           
 void TableView.RowEditor.RowEditorListenerList.rowEditing(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
           
 void TableView.RowEditorListener.rowEditing(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
          Called when editing has begun.
 void TableView.RowEditorListener.Adapter.rowEditing(TableView.RowEditor rowEditor, TableView tableView, int rowIndex, int columnIndex)
           
 void TableViewListener.rowEditorChanged(TableView tableView, TableView.RowEditor previousRowEditor)
          Called when a table view's row editor has changed.
 void TableViewListener.Adapter.rowEditorChanged(TableView tableView, TableView.RowEditor previousRowEditor)
           
 void TableView.RowEditor.RowEditorListenerList.saveChangesVetoed(TableView.RowEditor rowEditor, Vote reason)
           
 void TableView.RowEditorListener.saveChangesVetoed(TableView.RowEditor rowEditor, Vote reason)
          Called when a save was vetoed by a listener in the preview event.
 void TableView.RowEditorListener.Adapter.saveChangesVetoed(TableView.RowEditor rowEditor, Vote reason)
           
 void TableView.setRowEditor(TableView.RowEditor rowEditor)
          Sets the editor used to edit rows in this table.
 

Uses of TableView.RowEditor in org.apache.pivot.wtk.content
 

Classes in org.apache.pivot.wtk.content that implement TableView.RowEditor
 class TableViewCellEditor
          Default table view cell editor.
 class TableViewRowEditor
          Default table view row editor.
 

Uses of TableView.RowEditor in org.apache.pivot.wtk.skin.terra
 

Methods in org.apache.pivot.wtk.skin.terra with parameters of type TableView.RowEditor
 void TerraTableViewSkin.rowEditorChanged(TableView tableView, TableView.RowEditor previousRowEditor)