Example usage for Java javax.swing DefaultCellEditor fields, constructors, methods, implement or subclass
The text is from its open source code.
DefaultCellEditor(final JTextField textField) Constructs a DefaultCellEditor that uses a text field. | |
DefaultCellEditor(final JCheckBox checkBox) Constructs a DefaultCellEditor object that uses a check box. | |
DefaultCellEditor(final JComboBox> comboBox) Constructs a DefaultCellEditor object that uses a combo box. |
void | cancelCellEditing() Forwards the message from the CellEditor to the delegate . |
Object | getCellEditorValue() Forwards the message from the CellEditor to the delegate . |
int | getClickCountToStart() Returns the number of clicks needed to start editing. |
Component | getComponent() Returns a reference to the editor component. |
void | setClickCountToStart(int count) Specifies the number of clicks needed to start editing. |
boolean | stopCellEditing() Forwards the message from the CellEditor to the delegate . |