- 
- All Known Implementing Classes:
- BasicComboBoxEditor,- BasicComboBoxEditor.UIResource,- MetalComboBoxEditor,- MetalComboBoxEditor.UIResource
 
 public interface ComboBoxEditorThe editor component used for JComboBox components.- Since:
- 1.2
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier 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 Detail- 
getEditorComponentComponent getEditorComponent() Returns the component that should be added to the tree hierarchy for this editor- Returns:
- the component
 
 - 
setItemvoid setItem(Object anObject) Set 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
 - 
addActionListenervoid addActionListener(ActionListener l) Add an ActionListener. An action event is generated when the edited item changes- Parameters:
- l- an- ActionListener
 
 - 
removeActionListenervoid removeActionListener(ActionListener l) Remove an ActionListener- Parameters:
- l- an- ActionListener
 
 
- 
 
-