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 SummaryNested ClassesModifier and TypeClassDescriptionstatic classA subclass of BasicComboBoxEditor that implements UIResource.
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidAdd an ActionListener.protected JTextFieldCreates the internal editor component.voidInvoked when a component gains the keyboard focus.voidInvoked when a component loses the keyboard focus.Returns the component that should be added to the tree hierarchy for this editorgetItem()Returns the edited itemvoidRemove an ActionListenervoidAsk the editor to start editing and to select everythingvoidSets the item that should be edited.
- 
Field Details- 
editorAn instance ofJTextField.
 
- 
- 
Constructor Details- 
BasicComboBoxEditorpublic BasicComboBoxEditor()Constructs a new instance ofBasicComboBoxEditor.
 
- 
- 
Method Details- 
getEditorComponentDescription copied from interface:ComboBoxEditorReturns the component that should be added to the tree hierarchy for this editor- Specified by:
- getEditorComponentin interface- ComboBoxEditor
- Returns:
- the component
 
- 
createEditorComponentCreates the internal editor component. Override this to provide a custom implementation.- Returns:
- a new editor component
- Since:
- 1.6
 
- 
setItemSets the item that should be edited.- Specified by:
- setItemin interface- ComboBoxEditor
- Parameters:
- anObject- the displayed value of the editor
 
- 
getItemDescription copied from interface:ComboBoxEditorReturns the edited item- Specified by:
- getItemin interface- ComboBoxEditor
- Returns:
- the edited item
 
- 
selectAllpublic void selectAll()Description copied from interface:ComboBoxEditorAsk the editor to start editing and to select everything- Specified by:
- selectAllin interface- ComboBoxEditor
 
- 
focusGainedDescription copied from interface:FocusListenerInvoked when a component gains the keyboard focus.- Specified by:
- focusGainedin interface- FocusListener
- Parameters:
- e- the event to be processed
 
- 
focusLostDescription copied from interface:FocusListenerInvoked when a component loses the keyboard focus.- Specified by:
- focusLostin interface- FocusListener
- Parameters:
- e- the event to be processed
 
- 
addActionListenerDescription copied from interface:ComboBoxEditorAdd an ActionListener. An action event is generated when the edited item changes- Specified by:
- addActionListenerin interface- ComboBoxEditor
- Parameters:
- l- an- ActionListener
 
- 
removeActionListenerDescription copied from interface:ComboBoxEditorRemove an ActionListener- Specified by:
- removeActionListenerin interface- ComboBoxEditor
- Parameters:
- l- an- ActionListener
 
 
-