Example #1
0
  // @Test
  public void test() throws SimulationException {

    for (DefaultServerSimulation sim : DefaultServerSimulation.findAllDefaultServerSimulations()) {
      System.out.println(sim.getId() + ": " + sim.getOutputs().size());
      for (Variable v : sim.getOutputs()) {
        System.out.println("\t" + v.getExternalName() + "\t" + v.getLabels() + "\t" + v.getName());
      }
    }
  }