1 30 31 package com.jgoodies.looks.plastic; 32 33 import javax.swing.JTextField ; 34 import javax.swing.UIManager ; 35 import javax.swing.plaf.basic.BasicComboBoxEditor ; 36 37 48 class PlasticComboBoxEditor extends BasicComboBoxEditor { 49 50 PlasticComboBoxEditor() { 51 editor = new JTextField ("", UIManager.getInt("ComboBox.editorColumns")); 52 editor.setBorder(UIManager.getBorder("ComboBox.editorBorder")); 53 } 54 55 61 static final class UIResource extends PlasticComboBoxEditor implements 62 javax.swing.plaf.UIResource { 63 } 65 } | Popular Tags |