1 16 17 package swingwtx.swing; 18 19 import java.util.*; 20 import swingwtx.swing.event.*; 21 22 public interface CellEditor { 23 24 public Object getCellEditorValue(); 25 public boolean isCellEditable(EventObject anEvent); 26 public boolean shouldSelectCell(EventObject anEvent); 27 public boolean stopCellEditing(); 28 public void cancelCellEditing(); 29 public void addCellEditorListener(CellEditorListener l); 30 public void removeCellEditorListener(CellEditorListener l); 31 } 32 33 | Popular Tags |