package classes; import java.util.ArrayList; /** * The class "subNet" represents .... * * @author Gruppe14 * */ public class SubNet { private ArrayList subNetObjects; private ArrayList subNetEdges; private ArrayList subNetSwitches; /** * Constructor for a Subnet. * * @param objects * Objects in the Subnet * @param edges * Edges in the Subnet * @param switches * Switches in the Subnet */ public SubNet(ArrayList objects, ArrayList edges, ArrayList switches) { subNetObjects = objects; subNetEdges = edges; subNetSwitches = switches; } /** * Return all Objects in the Subnet. * * @return all Objects in the Subnet */ public ArrayList getObjects() { return subNetObjects; } /** * Return all Edges in the Subnet. * * @return all Edges in the Subnet */ public ArrayList getEdges() { return subNetEdges; } /** * Return all Switches in the Subnet. * * @return all Switches in the Subnet */ public ArrayList getSwitches() { return subNetSwitches; } public String toString(int timeStep) { StringBuilder sb = new StringBuilder(); sb.append(" Objects:"); for (int j = 0; j < getObjects().size(); j++) { HolonObject hl = getObjects().get(j); sb.append(" " + hl.getName() + " " + hl.getId()); } sb.append(" Edges:"); for (int j = 0; j < getEdges().size(); j++) { CpsEdge edge = getEdges().get(j); sb.append(" " + edge.getA().getName() + " connected To " + edge.getB().getName()); } sb.append(" Switches:"); for (int j = 0; j < getSwitches().size(); j++) { HolonSwitch sw = getSwitches().get(j); sb.append(" " + sw.getName() + " " + sw.getId() + " State:" + sw.getActiveAt()[timeStep]); } return sb.toString(); } public String toString() { StringBuilder sb = new StringBuilder(); sb.append(" Objects:"); for (int j = 0; j < getObjects().size(); j++) { HolonObject hl = getObjects().get(j); sb.append(" " + hl.getName() + " " + hl.getId()); } sb.append(" Edges:"); for (int j = 0; j < getEdges().size(); j++) { CpsEdge edge = getEdges().get(j); sb.append(" " + edge.getA().getName() + " connected To " + edge.getB().getName()); } sb.append(" Switches:"); for (int j = 0; j < getSwitches().size(); j++) { HolonSwitch sw = getSwitches().get(j); sb.append(" " + sw.getName() + " " + sw.getId() + " State:" + sw.getActiveAt()); } return sb.toString(); } }