home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / swing / ComboBoxEditor.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  337 b   |  19 lines

  1. package javax.swing;
  2.  
  3. import java.awt.Component;
  4. import java.awt.event.ActionListener;
  5.  
  6. public interface ComboBoxEditor {
  7.    Component getEditorComponent();
  8.  
  9.    void setItem(Object var1);
  10.  
  11.    Object getItem();
  12.  
  13.    void selectAll();
  14.  
  15.    void addActionListener(ActionListener var1);
  16.  
  17.    void removeActionListener(ActionListener var1);
  18. }
  19.