Package entagged.tageditor.resources

Examples of entagged.tageditor.resources.SplashWindow


* @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();
  }
View Full Code Here

TOP

Related Classes of entagged.tageditor.resources.SplashWindow

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.