Index: trunk/src/atmsdriver/model/Highway.java
===================================================================
--- trunk/src/atmsdriver/model/Highway.java	(revision 88)
+++ trunk/src/atmsdriver/model/Highway.java	(revision 89)
@@ -21,3 +21,18 @@
         this.stations = stations;
     }
+    
+    public Integer getRouteNumber()
+    {
+        return this.highwayNumber;
+    }
+    
+    public DIRECTION getDirection()
+    {
+        return this.direction;
+    }
+    
+    public ArrayList<Station> getStations()
+    {
+        return this.stations;
+    }
 }
