示例#1
0
  public static void main(String args[]) {
    // test
    HostsPorts input = new HostsPorts();
    HostsPorts outputs = new HostsPorts();
    Value omega = new Value();
    Value tau = new Value();

    try {
      ArgParser.parse(args, input, outputs, omega, tau);
    } catch (Exception ex) {
      ex.printStackTrace();
    }

    System.out.println("input=" + input);
    System.out.println("outputs=" + outputs);
    System.out.println("omega=" + omega);
    System.out.println("tau=" + tau);
  }