OSDN Git Service

コミット漏れ
authoryukihane <yukihane.feather@gmail.com>
Fri, 2 Sep 2011 16:57:57 +0000 (01:57 +0900)
committeryukihane <yukihane.feather@gmail.com>
Fri, 9 Sep 2011 11:41:28 +0000 (20:41 +0900)
frontend/src/yukihane/inqubus/gui/FileComboBox.java [new file with mode: 0644]

diff --git a/frontend/src/yukihane/inqubus/gui/FileComboBox.java b/frontend/src/yukihane/inqubus/gui/FileComboBox.java
new file mode 100644 (file)
index 0000000..8802560
--- /dev/null
@@ -0,0 +1,20 @@
+package yukihane.inqubus.gui;
+
+import javax.swing.JComboBox;
+import javax.swing.JTextField;
+
+/**
+ *
+ * @author user
+ */
+class FileComboBox extends JComboBox<String> {
+
+    FileComboBox() {
+        super();
+        setEditable(true);
+    }
+
+    JTextField getEditorComponent() {
+        return (JTextField) getEditor().getEditorComponent();
+    }
+}