JAL-1807 Bob's first commit -- Applet loaded; needs image
[jalview.git] / src / jalview / jsdev / Constants.java
diff --git a/src/jalview/jsdev/Constants.java b/src/jalview/jsdev/Constants.java
new file mode 100644 (file)
index 0000000..2bae93d
--- /dev/null
@@ -0,0 +1,31 @@
+package jalview.jsdev;
+
+/**
+ * note: not all file openers have corresponding String inFile and FileParse source options. Why not?
+ * 
+ * @author RM
+ *
+ */
+abstract public class Constants {
+
+  public final static String TCOFFEE_SCORE = "TCoffeeScore";
+
+  public static final int Phylip_FILE = 1;
+
+       public static final String Phylip_FILE_EXT = "phy";
+
+       public static final String Phylip_FILE_DESC = "PHYLIP";
+
+       public static final int JSON_FILE = 2;
+
+       public static final String JSON_FILE_EXT = "json";
+
+       public static final String JSON_FILE_DESC = "JSON";
+
+       public static final int Html_FILE = 3;
+
+       public static final String Html_FILE_EXT = "html";
+
+       public static final String Html_FILE_DESC = "HTML";
+
+}