1 package splash;
2
3
4
5
6
7
8
9
10
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 }