OSDN Git Service

8802560906307d3d78b7c648165b38adee0d15cd
[coroid/inqubus.git] / frontend / src / yukihane / inqubus / gui / FileComboBox.java
1 package yukihane.inqubus.gui;
2
3 import javax.swing.JComboBox;
4 import javax.swing.JTextField;
5
6 /**
7  *
8  * @author user
9  */
10 class FileComboBox extends JComboBox<String> {
11
12     FileComboBox() {
13         super();
14         setEditable(true);
15     }
16
17     JTextField getEditorComponent() {
18         return (JTextField) getEditor().getEditorComponent();
19     }
20 }