JAL-1807 Bob's JalviewJS prototype first commit
[jalviewjs.git] / src / jalview / jsdev / Constants.java
1 package jalview.jsdev;\r
2 \r
3 /**\r
4  * note: not all file openers have corresponding String inFile and FileParse source options. Why not?\r
5  * \r
6  * @author RM\r
7  *\r
8  */\r
9 abstract public class Constants {\r
10 \r
11   public final static String TCOFFEE_SCORE = "TCoffeeScore";\r
12 \r
13   public static final int Phylip_FILE = 1;\r
14 \r
15         public static final String Phylip_FILE_EXT = "phy";\r
16 \r
17         public static final String Phylip_FILE_DESC = "PHYLIP";\r
18 \r
19         public static final int JSON_FILE = 2;\r
20 \r
21         public static final String JSON_FILE_EXT = "json";\r
22 \r
23         public static final String JSON_FILE_DESC = "JSON";\r
24 \r
25         public static final int Html_FILE = 3;\r
26 \r
27         public static final String Html_FILE_EXT = "html";\r
28 \r
29         public static final String Html_FILE_DESC = "HTML";\r
30 \r
31 }\r