Changeset 188 in tmcsimulator for trunk/src/tmcsim/cadsimulator/CADServer.java
- Timestamp:
- 10/29/2017 03:13:25 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/tmcsim/cadsimulator/CADServer.java (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/tmcsim/cadsimulator/CADServer.java
r123 r188 20 20 import tmcsim.cadsimulator.managers.ParamicsSimulationManager; 21 21 import tmcsim.cadsimulator.managers.SimulationClockManager; 22 import tmcsim.cadsimulator.managers.TrafficModelManager; 22 23 import tmcsim.cadsimulator.viewer.model.CADSimulatorState; 23 24 import tmcsim.common.SimulationException; … … 122 123 ATMS_PROP_FILE("ATMSProperties"), 123 124 /** 125 * Filepath for the properties file to initialize the traffic manager. 126 */ 127 TRAFFICMGR_PROP_FILE("TrafficMgrProperties"), 128 /** 124 129 * Class name of desired user interface. 125 130 */ … … 168 173 */ 169 174 protected static ATMSManager theATMSMgr = null; 175 /** 176 * Traffic Model Manager instance 177 */ 178 protected static TrafficModelManager theTrafficMgr = null; 170 179 /** 171 180 * Properties file for the CADSimulator. … … 242 251 cadSimulatorProperties.getProperty( 243 252 CAD_PROPERTIES.ATMS_PROP_FILE.name)); 253 254 theTrafficMgr = new TrafficModelManager( 255 cadSimulatorProperties.getProperty( 256 CAD_PROPERTIES.TRAFFICMGR_PROP_FILE.name), 257 theCoordinator); 244 258 245 259 theMediaMgr = new MediaManager(
Note: See TracChangeset
for help on using the changeset viewer.
