All Packages Class Hierarchy This Package Previous Next Index
Interface com.sun.java.swing.ComboBoxEditor
- public interface ComboBoxEditor
-
addActionListener(ActionListener)
- Add an ActionListener.
-
getEditorComponent()
- Return the component that should be added to the tree hierarchy for
this editor
-
getValue()
- Return the editor value
-
removeActionListener(ActionListener)
- Remove an ActionListener
-
selectAll()
- Ask the editor to start editing and to select everything
-
setValue(Object)
- Set the editor value.
getEditorComponent
public abstract Component getEditorComponent()
- Return the component that should be added to the tree hierarchy for
this editor
setValue
public abstract void setValue(Object anObject)
- Set the editor value. Cancel any editing if necessary
getValue
public abstract Object getValue()
- Return the editor value
selectAll
public abstract void selectAll()
- Ask the editor to start editing and to select everything
addActionListener
public abstract void addActionListener(ActionListener l)
- Add an ActionListener. An action event is generated when the value changes
removeActionListener
public abstract void removeActionListener(ActionListener l)
- Remove an ActionListener
All Packages Class Hierarchy This Package Previous Next Index