OSDN Git Service

入出力ファイルの選択肢が2値になったのでチェックボックスに置き換え
[coroid/inqubus.git] / frontend / src / yukihane / inqubus / model / SourceType.java
diff --git a/frontend/src/yukihane/inqubus/model/SourceType.java b/frontend/src/yukihane/inqubus/model/SourceType.java
deleted file mode 100644 (file)
index 4627380..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package yukihane.inqubus.model;
-
-/**
- *
- * @author yuki
- */
-public enum SourceType {
-
-    DOWNLOAD("ダウンロード"),
-    LOCAL("ファイル選択");
-    private final String text;
-
-    private SourceType(String text) {
-        this.text = text;
-    }
-
-    @Override
-    public String toString() {
-        return text;
-    }
-}