OSDN Git Service

IDE警告除去
[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     private static final long serialVersionUID = 1L;
13
14     FileComboBox() {
15         super();
16         setEditable(true);
17     }
18
19     JTextField getEditorComponent() {
20         return (JTextField) getEditor().getEditorComponent();
21     }
22 }