-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
BasicTreeUI.CellEditorHandler,JTable,JTable.AccessibleJTable
public interface CellEditorListener extends EventListener
CellEditorListener defines the interface for an object that listens to changes in a CellEditor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voideditingCanceled(ChangeEvent e)This tells the listeners the editor has canceled editingvoideditingStopped(ChangeEvent e)This tells the listeners the editor has ended editing
-
-
-
Method Detail
-
editingStopped
void editingStopped(ChangeEvent e)
This tells the listeners the editor has ended editing- Parameters:
e- theChangeEventcontaining the source of the event
-
editingCanceled
void editingCanceled(ChangeEvent e)
This tells the listeners the editor has canceled editing- Parameters:
e- theChangeEventcontaining the source of the event
-
-