- Timestamp:
- 11/24/2017 01:30:38 PM (8 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
-
atmsdriver/ConsoleTrafficDriver.java (modified) (1 diff)
-
atmsdriver/model/Highways.java (modified) (1 diff)
-
atmsdriver/model/LoopDetector.java (modified) (2 diffs)
-
atmsdriver/model/Station.java (modified) (1 diff)
-
tmcsim/application.properties (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/atmsdriver/ConsoleTrafficDriver.java
r184 r234 31 31 */ 32 32 private static Properties ConsoleDriverProperties; 33 33 34 34 35 /** Entry point for the application. -
trunk/src/atmsdriver/model/Highways.java
r228 r234 283 283 284 284 int loopID = scline.nextInt(); 285 String loopLoc = getLoopLoc(line); 285 String loopLocID = scline.next(); 286 String loopLoc = scline.next(); 286 287 scline.close(); 287 return new LoopDetector(loopID, loopLoc );288 return new LoopDetector(loopID, loopLocID, loopLoc); 288 289 } 289 290 -
trunk/src/atmsdriver/model/LoopDetector.java
r202 r234 20 20 final public int loopID; 21 21 final public String loopLocation; 22 final public String loopLocationID; 22 23 23 24 /* dynamic data */ … … 32 33 * @param laneNum 33 34 */ 34 public LoopDetector(int loopID, String loopLocation )35 public LoopDetector(int loopID, String loopLocationID, String loopLocation) 35 36 { 36 37 /* Set static data */ 37 38 this.loopID = loopID; 38 39 this.loopLocation = loopLocation; 39 40 this.loopLocationID = loopLocationID; 40 41 /* Init dynamic data */ 41 42 this.vol = 0; -
trunk/src/atmsdriver/model/Station.java
r203 r234 196 196 this.OppTotVol = getOPPTotVol(); 197 197 } 198 198 199 199 /** 200 200 * Return the color for the lanes in a given direction. -
trunk/src/tmcsim/application.properties
r232 r234 1 #T ue, 07 Nov 2017 10:10:47-08001 #Thu, 23 Nov 2017 17:06:06 -0800 2 2 3 Application.revision=23 13 Application.revision=232 4 4 5 5 Application.buildnumber=88
Note: See TracChangeset
for help on using the changeset viewer.
