Package org.atomojo.app

Examples of org.atomojo.app.Main


   public void init(String[] arguments) {
      // Here open the configuration files, create the trace file, create the ServerSockets, the Threads
      if (arguments.length!=1) {
         throw new RuntimeException("The minimum number of argument is 1 (the directory).");
      }
      main = new Main(arguments);
      try {
         // bind
         main.init();
      } catch (Exception ex) {
         ex.printStackTrace();
View Full Code Here


         newargs[0] = "-c";
         newargs[1] = XMLDBStorageFactory.class.getName();
         System.arraycopy(args, 0, newargs, 2, args.length);
         args = newargs;
      }
      main = new Main(args);
      try {
         // bind
         main.init();
      } catch (Exception ex) {
         ex.printStackTrace();
View Full Code Here

TOP

Related Classes of org.atomojo.app.Main

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.