- All Known Implementing Classes:
- BasicComboBoxEditor,- BasicComboBoxEditor.UIResource,- MetalComboBoxEditor,- MetalComboBoxEditor.UIResource
public interface ComboBoxEditor
The editor component used for JComboBox components.
- Since:
- 1.2
- 
Method SummaryModifier and Type Method Description voidaddActionListener(ActionListener l)Add an ActionListener.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)Set the item that should be edited.
- 
Method Details- 
getEditorComponentComponent getEditorComponent()Returns the component that should be added to the tree hierarchy for this editor- Returns:
- the component
 
- 
setItemSet the item that should be edited. Cancel any editing if necessary- Parameters:
- anObject- an item
 
- 
getItemObject getItem()Returns the edited item- Returns:
- the edited item
 
- 
selectAllvoid selectAll()Ask the editor to start editing and to select everything
- 
addActionListenerAdd an ActionListener. An action event is generated when the edited item changes- Parameters:
- l- an- ActionListener
 
- 
removeActionListenerRemove an ActionListener- Parameters:
- l- an- ActionListener
 
 
-