adding jaxbtest.jvx and directing JalviewJS2.java to open it.
[jalview.git] / src / jalview / bin / JalviewJS2.java
1 package jalview.bin;
2
3 /**
4  * Entry point for JalviewJS development. 
5  * 
6  * 
7  * 
8  * @author RM
9  *
10  */
11 public class JalviewJS2
12 {
13
14   static {
15     /**
16      * --j2sNative
17      * 
18      *            thisApplet.__Info.args =
19      *            ["open","examples/uniref50.fa","features",
20      *            "examples/exampleFeatures.txt"];
21      */
22
23           
24             /**
25              * @j2sNative
26              * 
27              *            thisApplet.__Info.args =
28              *            ["open","examples/jaxbtest.jvx"];
29              */
30
31   }
32
33   public static void main(String[] args) throws Exception
34   {
35     Jalview.main(args);
36   }
37
38
39 }