Changeset 103 in tmcsimulator for trunk/src/atmsdriver/model/FEPLine.java
- Timestamp:
- 10/12/2017 12:28:28 AM (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
r88 r103 4 4 import org.w3c.dom.Document; 5 5 import org.w3c.dom.Element; 6 7 8 6 9 7 /** An FEPLine is a simulated line of communication from the FEP to … … 18 16 public class FEPLine { 19 17 /* Static FEPLine meta data */ 20 final p rivateint lineNum;21 final p rivateList<Station> stations;18 final public int lineNum; 19 final public List<Station> stations; 22 20 final private int count; 23 // NOT SURE IF NEXT IS FINAL21 24 22 final private int schedule; 25 23 final private int lineInfo; 26 24 final private long systemKey; 25 26 // THESE WILL NEED TO BE UPDATED MAYBE, NOT SURE, NOT A PRIORITY. SEE METHOD 27 // UPDATESEQUENCES() 27 28 private long globalSeq; 28 29 private long scheduleSeq; … … 40 41 this.globalSeq = globalSeq; 41 42 this.scheduleSeq = scheduleSeq; 42 }43 44 public int getLineNumber()45 {46 return this.lineNum;47 }48 49 public List<Station> getStations()50 {51 return this.stations;52 43 } 53 44
Note: See TracChangeset
for help on using the changeset viewer.
