public interface ComboBoxEditor
JComboBoxes.| Modifier and Type | Method and Description |
|---|---|
void |
addActionListener(java.awt.event.ActionListener listener)
This method adds specified ActionListener to this ComboBoxEditor.
|
java.awt.Component |
getEditorComponent()
This method returns component that will be used by the combo box to
display/edit currently selected item in the combo box.
|
java.lang.Object |
getItem()
This method returns item that is currently editable.
|
void |
removeActionListener(java.awt.event.ActionListener listener)
This method removes given ActionListener from this ComboBoxEditor.
|
void |
selectAll()
selectAll
|
void |
setItem(java.lang.Object item)
Sets item that should be editted when any editting operation is performed
by the user.
|
java.awt.Component getEditorComponent()
void setItem(java.lang.Object item)
item - item that is currently selected in the combo boxjava.lang.Object getItem()
void selectAll()
void addActionListener(java.awt.event.ActionListener listener)
listener - void removeActionListener(java.awt.event.ActionListener listener)
listener - TODO