Changeset 103 in tmcsimulator for trunk/src/atmsdriver/FEPLineLoader.java
- Timestamp:
- 10/12/2017 12:28:28 AM (9 years ago)
- File:
-
- 1 moved
-
trunk/src/atmsdriver/FEPLineLoader.java (moved) (moved from trunk/src/atmsdriver/NetworkLoader.java) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/atmsdriver/FEPLineLoader.java
r90 r103 13 13 import java.util.logging.Logger; 14 14 15 /** The NetworkReader loads all static data for the traffic network through 16 * network lookup files. 15 /** The FEPLineLoader loads all static data for the FEPLines, using the station 16 * and loop lookup files. 17 * 18 * THIS CLASS WILL BE REMOVED AND THE LOADING OF FEPLINES WILL BE THE RESPONSIBILITY 19 * OF THE HIGHWAYS.JAVA CLASS FOR PROPER OOP. JUST USING FOR NOW BECAUSE IT WORKS. 17 20 * 18 21 * The public method getFEPLines() method can be used to get all the FEPLines 19 within a network. All other methods are private and are used to construct 20 the FEPLines. 21 22 The "LDSFile" contains Station and FEPLine information. 23 ex. 24 < Insert file here > 25 * The "loopFile" contains individual LoopDetector information. 26 * ex. 27 * < Insert file here > 22 * within the network. All other methods are private and are used to construct 23 * the FEPLines. 28 24 * 29 25 * @author John A. Torres 30 26 * @version 09/10/2017 31 27 */ 32 public class NetworkLoader {28 public class FEPLineLoader { 33 29 // Two network config files 34 30 private final File LDSFile; … … 43 39 * @param loopFile contains individual LoopDetector static data 44 40 */ 45 public NetworkLoader(File LDSFile, File loopFile)41 public FEPLineLoader(File LDSFile, File loopFile) 46 42 { 47 43 this.LDSFile = LDSFile; … … 176 172 } 177 173 } catch (FileNotFoundException ex) { 178 Logger.getLogger( NetworkLoader.class.getName()).log(Level.SEVERE, null, ex);174 Logger.getLogger(FEPLineLoader.class.getName()).log(Level.SEVERE, null, ex); 179 175 } 180 176 }
Note: See TracChangeset
for help on using the changeset viewer.
