Index: trunk/src/atmsdriver/model/Highways.java
===================================================================
--- trunk/src/atmsdriver/model/Highways.java	(revision 190)
+++ trunk/src/atmsdriver/model/Highways.java	(revision 191)
@@ -198,10 +198,10 @@
         {
             Scanner sc = new Scanner(new File(highwaysMapFileName));
+            // first line of file contains number of FEP Lines
             String firstLine = sc.nextLine();
-
             Scanner linesc = new Scanner(firstLine);
             int numLines = linesc.nextInt();
             linesc.close();
-
+            // FOR each FEP Line
             for (int i = 0; i < numLines; i++)
             {
@@ -227,9 +227,10 @@
         String line = sc.nextLine();
         Scanner scline = new Scanner(line);
-
+        // Get the attribute of this FEP Line
         int lineNum = scline.nextInt();
         int count = scline.nextInt();
         int numStations = scline.nextInt();
         ArrayList<Station> stations = new ArrayList<>();
+        // Read all the stations for thie FEP Line
         for (int i = 0; i < numStations; i++)
         {
@@ -473,4 +474,19 @@
     }
 
+    /** Return a string representation of the Highways */
+    public String toString()
+    {
+        StringBuilder result = new StringBuilder();
+        for (Highway hwy: highways)
+        {
+            result.append(""+String.format("%3s ",hwy.routeNumber));
+            for (Station stat: hwy.stations)
+            {
+                result.append(stat.getColorByDirection(stat.direction));
+            }
+            result.append("\n");
+        }
+        return result.toString();
+    }
     /**
      * XML tags used in writeToXML()
