* @version 4 janvier 2004
*/
public class TagEditorFrameSplash {
public static void main( String[] args ) {
URL splashImage = TagEditorFrameSplash.class.getClassLoader().getResource("entagged/tageditor/resources/icons/splash.png");
SplashWindow splash = new SplashWindow( splashImage );
splash.setVisible( true );
splash.setBeginning("Beginning");
miage.sgbd.SqlProvider.createDataBase();
try {
Class.forName( "entagged.tageditor.resources.Initialization" ).getMethod( "init", new Class[]{Class.forName("entagged.tageditor.resources.InitializationMonitor")} ).invoke( null, new Object[]{splash} );
Class.forName( "entagged.tageditor.TagEditorFrame" ).getMethod( "main", new Class[]{String[].class} ).invoke( null, new Object[]{args} );
} catch ( Throwable e ) {
System.out.println("Fatal Error occured !");
e.printStackTrace();
System.exit( -1 );
}
splash.setFinishing("Finished");
splash.dispose();
}