All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.sun.java.swing.ComboBoxEditor

public interface ComboBoxEditor

Method Index

 o addActionListener(ActionListener)
Add an ActionListener.
 o getEditorComponent()
Return the component that should be added to the tree hierarchy for this editor
 o getItem()
Return the edited item
 o removeActionListener(ActionListener)
Remove an ActionListener
 o selectAll()
Ask the editor to start editing and to select everything
 o setItem(Object)
Set the item that should be edited.

Methods

 o getEditorComponent
 public abstract Component getEditorComponent()
Return the component that should be added to the tree hierarchy for this editor

 o setItem
 public abstract void setItem(Object anObject)
Set the item that should be edited. Cancel any editing if necessary

 o getItem
 public abstract Object getItem()
Return the edited item

 o selectAll
 public abstract void selectAll()
Ask the editor to start editing and to select everything

 o addActionListener
 public abstract void addActionListener(ActionListener l)
Add an ActionListener. An action event is generated when the edited item changes

 o removeActionListener
 public abstract void removeActionListener(ActionListener l)
Remove an ActionListener


All Packages  Class Hierarchy  This Package  Previous  Next  Index