public static void main(String[] args) {
    Application.launch(TestApp.class, args);

    /*try {
        ImageIO.write(ImageIO.read(new File("E:\\projects\\captchatest\\letters1.png")), "png", new File("E:\\projects\\captchatest\\letters.png"));
    } catch (Exception e) {
        e.printStackTrace();
    }*/
  }
 /**
  * Main start method for running this application Called from IDE
  *
  * @param args arguments for application
  */
 public static void main(String[] args) {
   Application.launch(TestApp.class, args); // starts the application - calls startup() internally
 }
Exemple #3
0
 /** @param args the command line arguments */
 public static void main(String[] args) {
   Application.launch(ShowTimeApp.class, args);
 }
 /**
  * Main start method for running this application Called from IDE
  *
  * @param args arguments for application
  */
 public static void main(String[] args) {
   Application.launch(TestApp.class, args);
 }
 public static void main(String[] args) {
   Application.launch(ApplicationExample2.class, args);
 }