diff --git a/examples/src/OpenDis7Examples/SimulationManager.java b/examples/src/OpenDis7Examples/SimulationManager.java
index 401f2da5b19a9edc4e1ec60ff2d3e69a7df72d08..d915f0ddac933d74bb6621a5192f2b6df2171ef1 100644
--- a/examples/src/OpenDis7Examples/SimulationManager.java
+++ b/examples/src/OpenDis7Examples/SimulationManager.java
@@ -79,42 +79,42 @@ public class SimulationManager
     /**
      * Start the simulation according to specifications
      */
-    public void SimulationStart()
+    public void simulationStart()
     {
         // TODO
     }
     /**
      * Pause the simulation according to specifications
      */
-    public void SimulationPause()
+    public void simulationPause()
     {
         // TODO
     }
     /**
      * Resume the simulation according to specifications
      */
-    public void SimulationResume()
+    public void simulationResume()
     {
         // TODO
     }
     /**
      * Stop the simulation according to specifications
      */
-    public void SimulationStop()
+    public void simulationStop()
     {
         // TODO
     }
     /**
      * An entity can Join the simulation according to specifications
      */
-    public void Join()
+    public void simulationJoin()
     {
         // TODO
     }
     /**
      * An entity can Leave the simulation according to specifications
      */
-    public void Leave()
+    public void simulationLeave()
     {
         // TODO
     }