Exemple #1
0
 /**
  * Starts the generation process with the files in <code>argv</code> or pops up a window to choose
  * a file, when <code>argv</code> doesn't have any file entries.
  *
  * @param argv the commandline.
  */
 public static void main(String argv[]) {
   try {
     generate(argv);
   } catch (GeneratorException e) {
     Out.statistics();
     System.exit(1);
   } catch (SilentExit e) {
     System.exit(1);
   }
 }