Changeset 212 in tmcsimulator for trunk/src/atmsdriver/model/Highway.java


Ignore:
Timestamp:
11/02/2017 01:42:45 PM (9 years ago)
Author:
jtorres
Message:

branches/FEPSimulator/tests/HighwaysParserTest.cpp: Unit test for HighwaysParser?.cpp. HighwaysTest?.java: now passing toXML(), added test for toCondensedFormat() method. LoadHighwaysTest?.java: passing. LoadSadDotsTest?.java: conformed to changes, not passing. Highway.java/Highways.java: converted class attributes to List instead of ArrayList?. Highways.java: corrected toCondensedFormat() method comments and added comments throughout file.

File:
1 edited

Legend:

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

    r103 r212  
    22 
    33import java.util.ArrayList; 
     4import java.util.List; 
    45 
    56/** 
     
    1516    public final Integer routeNumber; 
    1617    /** The ordered list of stations (lane detector stations) on this highway */ 
    17     public final ArrayList<Station> stations; 
     18    public final List<Station> stations; 
    1819 
    1920    /** Construct a highway  
Note: See TracChangeset for help on using the changeset viewer.