home *** CD-ROM | disk | FTP | other *** search
- package javax.swing.plaf.metal;
-
- import java.awt.Insets;
- import javax.swing.JTextField;
- import javax.swing.plaf.basic.BasicComboBoxEditor;
-
- public class MetalComboBoxEditor extends BasicComboBoxEditor {
- protected static Insets editorBorderInsets = new Insets(2, 2, 2, 0);
-
- public MetalComboBoxEditor() {
- super.editor.removeFocusListener(this);
- super.editor = new JTextField("", 9);
- super.editor.setBorder(new EditorBorder(this));
- super.editor.addFocusListener(this);
- }
- }
-