Skip to content
Snippets Groups Projects
Commit d77816c2 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

normalize method names

parent 8936665b
No related branches found
No related tags found
No related merge requests found
...@@ -79,42 +79,42 @@ public class SimulationManager ...@@ -79,42 +79,42 @@ public class SimulationManager
/** /**
* Start the simulation according to specifications * Start the simulation according to specifications
*/ */
public void SimulationStart() public void simulationStart()
{ {
// TODO // TODO
} }
/** /**
* Pause the simulation according to specifications * Pause the simulation according to specifications
*/ */
public void SimulationPause() public void simulationPause()
{ {
// TODO // TODO
} }
/** /**
* Resume the simulation according to specifications * Resume the simulation according to specifications
*/ */
public void SimulationResume() public void simulationResume()
{ {
// TODO // TODO
} }
/** /**
* Stop the simulation according to specifications * Stop the simulation according to specifications
*/ */
public void SimulationStop() public void simulationStop()
{ {
// TODO // TODO
} }
/** /**
* An entity can Join the simulation according to specifications * An entity can Join the simulation according to specifications
*/ */
public void Join() public void simulationJoin()
{ {
// TODO // TODO
} }
/** /**
* An entity can Leave the simulation according to specifications * An entity can Leave the simulation according to specifications
*/ */
public void Leave() public void simulationLeave()
{ {
// TODO // TODO
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment