Blame view
circus/src/jcircus/JCircusPlusPlus.java
1020 Bytes
8d0dc533f
![]() |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
/* * JCircus.java */ package jcircus; public class JCircusPlusPlus { public static void main(String args[]) { JCircusController controller = new JCircusControllerFrame(); } /** * Main method. */ /* public static void main(String[] args) { try { if (args.length < 3) { System.out.println("Error: Wrong number of parameters"); System.out.println("Use: java jCircus.Jcircus <input-file> <proj-name> <output-dir>"); System.exit(0); } String path = args[0]; String projectName = args[1]; String projectDir = args[2]; String nameMainProcess = null; if (args.length > 3) { nameMainProcess = args[3]; } JCircusController jCircus = new JCircusController(); jCircus.translate(path, projectName, projectDir); } catch (Exception e) { e.printStackTrace(); } }*/ } |