home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 144 / DPCS0200.iso / Internet / Supanet / system / swing.jar / javax / swing / plaf / metal / MetalComboBoxEditor.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-05  |  1.0 KB  |  17 lines

  1. package javax.swing.plaf.metal;
  2.  
  3. import java.awt.Insets;
  4. import javax.swing.JTextField;
  5. import javax.swing.plaf.basic.BasicComboBoxEditor;
  6.  
  7. public class MetalComboBoxEditor extends BasicComboBoxEditor {
  8.    protected static Insets editorBorderInsets = new Insets(2, 2, 2, 0);
  9.  
  10.    public MetalComboBoxEditor() {
  11.       super.editor.removeFocusListener(this);
  12.       super.editor = new JTextField("", 9);
  13.       super.editor.setBorder(new EditorBorder(this));
  14.       super.editor.addFocusListener(this);
  15.    }
  16. }
  17.