View Javadoc

1   /*
2    *                Doelan development code
3    *
4    * This code may be freely distributed and modified under the
5    * terms of the GNU General Public Licence.  This should
6    * be distributed with the code. If you do not have a copy,
7    * see:
8    *
9    *      http://www.gnu.org/copyleft/gpl.txt
10   *
11   * Copyright (c) 2004-2005 ENS Microarray Platform
12   * Copyright for this code is held jointly by the individual
13   * authors.  These should be listed in @author doc comments.
14   *
15   * For more information on the Doelan project and its aims,
16   * or to join the Doelan mailing list, visit the home page
17   * at:
18   *
19   *      http://www.transcriptome.ens.fr/doelan
20   */
21  
22  package fr.ens.transcriptome.doelan;
23  
24  import javax.swing.JApplet;
25  
26  import fr.ens.transcriptome.doelan.gui.CommonWindow;
27  
28  /***
29   * Applet of the application.
30   * @author Laurent Jourdren
31   */
32  public class GenepixApplet extends JApplet {
33  
34    /***
35     * Applet init method.
36     */
37    public void init() {
38  
39      // Initialize default values
40      DoelanRegistery.init();
41      DoelanRegistery.setAppletMode(true);
42  
43      // Display the window.
44      setSize(Defaults.WINDOW_WIDTH, Defaults.WINDOW_HEIGHT);
45  
46      new CommonWindow(this, null).init();
47    }
48  
49  }