Changeset 84 in tmcsimulator for trunk/src/atmsdriver/model/FEPLine.java


Ignore:
Timestamp:
10/06/2017 11:44:52 PM (9 years ago)
Author:
jtorres
Message:

FEPSimulator.cpp: FEPSimulator socket server is now receiving full messages, no more partial messages over the TCP socket. General housekeeping on FEPSim.cpp, NetworkReader?.cpp, ATMSDriver.java, NetworkLoader?.java.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/atmsdriver/model/FEPLine.java

    r79 r84  
    1919    /* Static FEPLine meta data */ 
    2020    final private int lineNum; 
    21     final private List<LoopDetectorStation> stations; 
     21    final private List<Station> stations; 
    2222    final private int count; 
    2323    // NOT SURE IF NEXT IS FINAL 
     
    2828    final private long scheduleSeq; 
    2929     
    30     public FEPLine(int lineNum, List<LoopDetectorStation> stations, int count, 
     30    public FEPLine(int lineNum, List<Station> stations, int count, 
    3131            int schedule, int lineInfo, long systemKey, long globalSeq, 
    3232            long scheduleSeq) 
     
    7979        Element stationsElement = theDoc.createElement(XML_TAGS.STATIONS.tag); 
    8080        lineElement.appendChild(stationsElement); 
    81         for(LoopDetectorStation station : stations) 
     81        for(Station station : stations) 
    8282        { 
    8383            station.toXML(stationsElement); 
Note: See TracChangeset for help on using the changeset viewer.