View Javadoc

1   package splash;
2   
3   /*
4    * @(#)Splasher.java  2.0  January 31, 2004
5    *
6    * Copyright (c) 2003-2004 Werner Randelshofer
7    * Staldenmattweg 2, Immensee, CH-6405, Switzerland.
8    * All rights reserved.
9    *
10   * This software is in the public domain.
11   */
12  
13  /***
14   *
15   * @author  werni
16   */
17  public class Splasher {
18  	
19      /***
20       * Shows the splash screen, launches the application and then disposes
21       * the splash screen.
22       * @param args the command line arguments
23       */
24      public static void main(String[] args) {
25      	ClassLoader cl = ClassLoader.getSystemClassLoader();
26          SplashWindow.splash(cl.getResource("images/coras-splash.png"));
27          SplashWindow.invokeMain("coras.client.CorasClient", args);
28          SplashWindow.disposeSplash();
29      }
30      
31  }