package ui.model; import java.util.ArrayList; public class DecoratedState { int timestepOfState; ArrayList networkList; ArrayList leftOverEdges; ArrayList decoratedSwitches; public DecoratedState(ArrayList networkList, ArrayList leftOverEdges, ArrayList decoratedSwitches , int timestepOfState){ this.networkList = networkList; this.leftOverEdges = leftOverEdges; this.decoratedSwitches = decoratedSwitches; this.timestepOfState = timestepOfState; } public ArrayList getNetworkList() { return networkList; } public ArrayList getLeftOverEdges() { return leftOverEdges; } public ArrayList getDecoratedSwitches() { return decoratedSwitches; } public int getTimestepOfState() { return timestepOfState; } }