Ejemplo n.º 1
0
 private com.relteq.sirius.jaxb.NetworkList restoreNetworkList(Scenarios db_scenario)
     throws TorqueException {
   @SuppressWarnings("unchecked")
   List<NetworkSets> db_nets_l = db_scenario.getNetworkSetss();
   if (db_nets_l.isEmpty()) return null;
   com.relteq.sirius.jaxb.NetworkList nets = factory.createNetworkList();
   for (NetworkSets db_nets : db_nets_l)
     nets.getNetwork().add(restoreNetwork(db_nets.getNetworks()));
   return nets;
 }