Changeset 103 in tmcsimulator for trunk/src/atmsdriver/model/Highway.java
- Timestamp:
- 10/12/2017 12:28:28 AM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/atmsdriver/model/Highway.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/atmsdriver/model/Highway.java
r93 r103 10 10 * @author jdalbey 11 11 */ 12 final class Highway12 final public class Highway 13 13 { 14 14 /** The identifying number for this highway, e.g., 101 */ 15 public final Integer highwayNumber;15 public final Integer routeNumber; 16 16 /** The ordered list of stations (lane detector stations) on this highway */ 17 17 public final ArrayList<Station> stations; … … 22 22 * @param stations ordered list of stations on this highway 23 23 */ 24 public Highway(Integer highwayNum, ArrayList<Station> stations)24 public Highway(Integer routeNumber, ArrayList<Station> stations) 25 25 { 26 this. highwayNumber = highwayNum;26 this.routeNumber = routeNumber; 27 27 this.stations = stations; 28 28 }
Note: See TracChangeset
for help on using the changeset viewer.
