Class BasicComboBoxEditor
java.lang.Object
javax.swing.plaf.basic.BasicComboBoxEditor
- All Implemented Interfaces:
FocusListener, EventListener, ComboBoxEditor
- Direct Known Subclasses:
BasicComboBoxEditor.UIResource, MetalComboBoxEditor
The default editor for editable combo boxes. The editor is implemented as a JTextField.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
A subclass of BasicComboBoxEditor that implements UIResource. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Add an ActionListener.protected JTextField
Creates the internal editor component.void
Invoked when a component gains the keyboard focus.void
Invoked when a component loses the keyboard focus.Returns the component that should be added to the tree hierarchy for this editorgetItem()
Returns the edited itemvoid
Remove an ActionListenervoid
Ask the editor to start editing and to select everythingvoid
Sets the item that should be edited.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
editor
An instance ofJTextField
.
-
-
Constructor Details
-
BasicComboBoxEditor
public BasicComboBoxEditor()Constructs a new instance ofBasicComboBoxEditor
.
-
-
Method Details
-
getEditorComponent
Description copied from interface:ComboBoxEditor
Returns the component that should be added to the tree hierarchy for this editor- Specified by:
getEditorComponent
in interfaceComboBoxEditor
- Returns:
- the component
-
createEditorComponent
Creates the internal editor component. Override this to provide a custom implementation.- Returns:
- a new editor component
- Since:
- 1.6
-
setItem
Sets the item that should be edited.- Specified by:
setItem
in interfaceComboBoxEditor
- Parameters:
anObject
- the displayed value of the editor
-
getItem
Description copied from interface:ComboBoxEditor
Returns the edited item- Specified by:
getItem
in interfaceComboBoxEditor
- Returns:
- the edited item
-
selectAll
public void selectAll()Description copied from interface:ComboBoxEditor
Ask the editor to start editing and to select everything- Specified by:
selectAll
in interfaceComboBoxEditor
-
focusGained
Description copied from interface:FocusListener
Invoked when a component gains the keyboard focus.- Specified by:
focusGained
in interfaceFocusListener
- Parameters:
e
- the event to be processed
-
focusLost
Description copied from interface:FocusListener
Invoked when a component loses the keyboard focus.- Specified by:
focusLost
in interfaceFocusListener
- Parameters:
e
- the event to be processed
-
addActionListener
Description copied from interface:ComboBoxEditor
Add an ActionListener. An action event is generated when the edited item changes- Specified by:
addActionListener
in interfaceComboBoxEditor
- Parameters:
l
- anActionListener
-
removeActionListener
Description copied from interface:ComboBoxEditor
Remove an ActionListener- Specified by:
removeActionListener
in interfaceComboBoxEditor
- Parameters:
l
- anActionListener
-