- java.lang.Object
-
- javax.swing.plaf.basic.BasicComboBoxEditor
-
- All Implemented Interfaces:
FocusListener,EventListener,ComboBoxEditor
- Direct Known Subclasses:
BasicComboBoxEditor.UIResource,MetalComboBoxEditor
public class BasicComboBoxEditor extends Object implements ComboBoxEditor, FocusListener
The default editor for editable combo boxes. The editor is implemented as a JTextField.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBasicComboBoxEditor.UIResourceA subclass of BasicComboBoxEditor that implements UIResource.
-
Field Summary
Fields Modifier and Type Field Description protected JTextFieldeditorAn instance ofJTextField.
-
Constructor Summary
Constructors Constructor Description BasicComboBoxEditor()Constructs a new instance ofBasicComboBoxEditor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddActionListener(ActionListener l)Add an ActionListener.protected JTextFieldcreateEditorComponent()Creates the internal editor component.voidfocusGained(FocusEvent e)Invoked when a component gains the keyboard focus.voidfocusLost(FocusEvent e)Invoked when a component loses the keyboard focus.ComponentgetEditorComponent()Returns the component that should be added to the tree hierarchy for this editorObjectgetItem()Returns the edited itemvoidremoveActionListener(ActionListener l)Remove an ActionListenervoidselectAll()Ask the editor to start editing and to select everythingvoidsetItem(Object anObject)Sets the item that should be edited.
-
-
-
Field Detail
-
editor
protected JTextField editor
An instance ofJTextField.
-
-
Method Detail
-
getEditorComponent
public Component getEditorComponent()
Description copied from interface:ComboBoxEditorReturns the component that should be added to the tree hierarchy for this editor- Specified by:
getEditorComponentin interfaceComboBoxEditor- Returns:
- the component
-
createEditorComponent
protected JTextField createEditorComponent()
Creates the internal editor component. Override this to provide a custom implementation.- Returns:
- a new editor component
- Since:
- 1.6
-
setItem
public void setItem(Object anObject)
Sets the item that should be edited.- Specified by:
setItemin interfaceComboBoxEditor- Parameters:
anObject- the displayed value of the editor
-
getItem
public Object getItem()
Description copied from interface:ComboBoxEditorReturns the edited item- Specified by:
getItemin interfaceComboBoxEditor- Returns:
- the edited item
-
selectAll
public void selectAll()
Description copied from interface:ComboBoxEditorAsk the editor to start editing and to select everything- Specified by:
selectAllin interfaceComboBoxEditor
-
focusGained
public void focusGained(FocusEvent e)
Description copied from interface:FocusListenerInvoked when a component gains the keyboard focus.- Specified by:
focusGainedin interfaceFocusListener- Parameters:
e- the event to be processed
-
focusLost
public void focusLost(FocusEvent e)
Description copied from interface:FocusListenerInvoked when a component loses the keyboard focus.- Specified by:
focusLostin interfaceFocusListener- Parameters:
e- the event to be processed
-
addActionListener
public void addActionListener(ActionListener l)
Description copied from interface:ComboBoxEditorAdd an ActionListener. An action event is generated when the edited item changes- Specified by:
addActionListenerin interfaceComboBoxEditor- Parameters:
l- anActionListener
-
removeActionListener
public void removeActionListener(ActionListener l)
Description copied from interface:ComboBoxEditorRemove an ActionListener- Specified by:
removeActionListenerin interfaceComboBoxEditor- Parameters:
l- anActionListener
-
-