Package edu.neu.ccs.task.util

Examples of edu.neu.ccs.task.util.PropertiesConfig


  }
 
  public static void serverMain(String[] args) throws Exception {
    Configuration c;
    if (args.length > 0)
      c = new PropertiesConfig(new File(args[0]));
    else
      c = new PropertiesConfig();

    AgentServer server = new AgentServer(c);
    server.run();
    /*
    int port = 7070;
View Full Code Here

TOP

Related Classes of edu.neu.ccs.task.util.PropertiesConfig

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.