Ignore:
Timestamp:
10/15/2017 03:59:42 PM (9 years ago)
Author:
jdalbey
Message:

Multiple renaming of classes to improve clarity. Remove check for Paramics running before starting sim.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/tmcsim/cadsimulator/managers/SimulationClockManager.java

    r2 r123  
    88import tmcsim.common.CADEnums.SCRIPT_STATUS; 
    99 
    10 public class SimulationControlManager  { 
     10/** Manage the simulation clock, "the heartbeat of the simulation". */ 
     11public class SimulationClockManager  { 
    1112 
    1213    /**  
    13      *  
     14     * Define what happens every second. 
    1415     */ 
    1516    private class ClockTask extends TimerTask {      
     
    3940     
    4041     
    41     public SimulationControlManager(Coordinator coor) { 
     42    public SimulationClockManager(Coordinator coor) { 
    4243         
    4344        theCoordinator    = coor;        
     
    5960     
    6061    public void startSimulation() { 
    61              
     62        /** Start the clock running */     
    6263        simTimer = new Timer();      
    6364        simTimer.scheduleAtFixedRate(new ClockTask(), 0, 1000); 
Note: See TracChangeset for help on using the changeset viewer.