2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.util.Platform;
25 import java.awt.event.ActionEvent;
26 import java.awt.event.ActionListener;
28 import javax.swing.Timer;
31 * Entry point for JalviewJS development.
38 public class JalviewJS2
44 * @ could do it this way:
48 * J2S.thisApplet.__Info.args = [ "open","examples/uniref50.fa",
49 * "features","examples/exampleFeatures.txt", "noannotation" ];
53 public static void main(String[] args) throws Exception
59 "open", "examples/uniref50.fa",
61 // "examples/exampleFeatures.txt"
64 //, "png", "test-bh.png"
68 // String cmds = "nodisplay -open examples/uniref50.fa -sortbytree -props
69 // test/jalview/io/testProps.jvprops -colour zappo "
70 // + "-jabaws http://www.compbio.dundee.ac.uk/jabaws -nosortbytree "
71 // + "-features examples/testdata/plantfdx.features -annotations
72 // examples/testdata/plantfdx.annotations -tree
73 // examples/testdata/uniref50_test_tree";
74 // args = cmds.split(" ");
79 protected static int focusTime = 0;
81 private static void showFocusTimer()
86 Timer t = new Timer(100, new ActionListener()
90 public void actionPerformed(ActionEvent e)
92 String s = /** @j2sNative document.activeElement.id || */
95 s += " " + (++focusTime);
97 /** @j2sNative document.title = s; */