diff --git a/assignments/src/MV3500Cohort2021JulySeptember/homework3/Schlessel/ExampleSimulationProgram.java b/assignments/src/MV3500Cohort2021JulySeptember/homework3/Schlessel/ExampleSimulationProgram.java index befe83680842660c8b52100a039a6bc8bd37b3f5..180af60c3995169247301d3c75c025ee904bf357 100644 --- a/assignments/src/MV3500Cohort2021JulySeptember/homework3/Schlessel/ExampleSimulationProgram.java +++ b/assignments/src/MV3500Cohort2021JulySeptember/homework3/Schlessel/ExampleSimulationProgram.java @@ -3,7 +3,7 @@ * This work is provided under a BSD open-source license, see project license.html and license.txt * @author brutzman@nps.edu */ -package MV3500Cohort2021JulySeptember.homework3.Schlessel; +// package MV3500Cohort2021JulySeptember.homework3.Schlessel; import edu.nps.moves.dis7.entities.swe.platform.surface._001Poseidon; import edu.nps.moves.dis7.entities.swe.platform.surface._002Triton; diff --git a/assignments/src/MV3500Cohort2021JulySeptember/homework3/Schlessel/SchlesselSimulationProgram.java b/assignments/src/MV3500Cohort2021JulySeptember/homework3/Schlessel/SchlesselSimulationProgram.java index 554c282914841e21ea1e1d4cfaa198e937a51bc9..b351d4e5e7479014aacd0da888e942268714eb93 100644 --- a/assignments/src/MV3500Cohort2021JulySeptember/homework3/Schlessel/SchlesselSimulationProgram.java +++ b/assignments/src/MV3500Cohort2021JulySeptember/homework3/Schlessel/SchlesselSimulationProgram.java @@ -3,7 +3,7 @@ * This work is provided under a BSD open-source license, see project license.html and license.txt * @author max.schlessel@nps.edu */ -package MV3500Cohort2021JulySeptember.homework3.Schlessel; +// package MV3500Cohort2021JulySeptember.homework3.Schlessel; import edu.nps.moves.dis7.enumerations.*; // match any import edu.nps.moves.dis7.pdus.*; // match any of the PDU classes, easier than listing individually @@ -18,7 +18,7 @@ import java.util.logging.Logger; * that includes DIS-capable entities doing tasks and reporting them to the network. * Default settings include PDU recording turned on by default. */ -public class ExampleSimulationProgram +public class SchlesselSimulationProgram { private boolean verboseComments = true; static final String NETWORK_ADDRESS_DEFAULT = "239.1.2.3"; @@ -186,7 +186,7 @@ public class ExampleSimulationProgram * Constructor design goal: additional built-in initialization conveniences can go here * to keep student efforts focused on the runSimulation() method. */ - public ExampleSimulationProgram() + public SchlesselSimulationProgram() { // Constructor is under consideration. Constructor is not currently needed. } @@ -196,7 +196,7 @@ public class ExampleSimulationProgram * @param address network address to use * @param port corresponding network port to use */ - public ExampleSimulationProgram(String address, int port) + public SchlesselSimulationProgram(String address, int port) { setNetworkAddress(address);