Java javax.swing DefaultCellEditor fields, constructors, methods, implement or subclass

Example usage for Java javax.swing DefaultCellEditor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.swing DefaultCellEditor.

The text is from its open source code.

Subclass

javax.swing.DefaultCellEditor has subclasses.
Click this link to see all its subclasses.

Constructor

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.

Method

voidcancelCellEditing()
Forwards the message from the CellEditor to the delegate.
ObjectgetCellEditorValue()
Forwards the message from the CellEditor to the delegate.
intgetClickCountToStart()
Returns the number of clicks needed to start editing.
ComponentgetComponent()
Returns a reference to the editor component.
voidsetClickCountToStart(int count)
Specifies the number of clicks needed to start editing.
booleanstopCellEditing()
Forwards the message from the CellEditor to the delegate.