Changeset 84 in tmcsimulator for trunk/src/atmsdriver/model/FEPLine.java
- Timestamp:
- 10/06/2017 11:44:52 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/atmsdriver/model/FEPLine.java (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/atmsdriver/model/FEPLine.java
r79 r84 19 19 /* Static FEPLine meta data */ 20 20 final private int lineNum; 21 final private List< LoopDetectorStation> stations;21 final private List<Station> stations; 22 22 final private int count; 23 23 // NOT SURE IF NEXT IS FINAL … … 28 28 final private long scheduleSeq; 29 29 30 public FEPLine(int lineNum, List< LoopDetectorStation> stations, int count,30 public FEPLine(int lineNum, List<Station> stations, int count, 31 31 int schedule, int lineInfo, long systemKey, long globalSeq, 32 32 long scheduleSeq) … … 79 79 Element stationsElement = theDoc.createElement(XML_TAGS.STATIONS.tag); 80 80 lineElement.appendChild(stationsElement); 81 for( LoopDetectorStation station : stations)81 for(Station station : stations) 82 82 { 83 83 station.toXML(stationsElement);
Note: See TracChangeset
for help on using the changeset viewer.
