- Timestamp:
- 10/12/2017 09:29:20 AM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/atmsdriver/ConsoleDriver.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/atmsdriver/ConsoleDriver.java
r103 r104 24 24 private final List<String> dotColorInputList; 25 25 26 /** Entry point for the application. 27 * 28 * @param args unused 29 */ 30 public static void main(String[] args) 31 { 32 Highways highways = new Highways( 33 "config/vds_data/lds.txt", 34 "config/vds_data/loop.txt", 35 "config/vds_data/highwaysMeta.txt", 36 "localhost", 8080); 37 ConsoleDriver app = new ConsoleDriver(highways); 38 app.runConsole(); 39 } 26 40 /** 27 41 * Constructor. Sets the highways model and generates the input validation … … 35 49 // set input validation lists 36 50 routeNumInputList = generateRouteNumInputList(); 37 dotColorInputList = new ArrayList<>(Arrays.asList("R", "Y", "G")); 38 39 // run the console driver 40 runConsole(); 51 dotColorInputList = new ArrayList<>(Arrays.asList("R", "Y", "G")); 41 52 } 42 53
Note: See TracChangeset
for help on using the changeset viewer.
