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