- 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
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 Details
- 
editingStopped
This tells the listeners the editor has ended editing- Parameters:
 e- theChangeEventcontaining the source of the event
 - 
editingCanceled
This tells the listeners the editor has canceled editing- Parameters:
 e- theChangeEventcontaining the source of the event
 
 -