Index: trunk/src/atmsdriver/model/Highways.java
===================================================================
--- trunk/src/atmsdriver/model/Highways.java	(revision 184)
+++ trunk/src/atmsdriver/model/Highways.java	(revision 186)
@@ -354,24 +354,32 @@
         }
     }
-
-    /**
-     * Returns the highways metadata in condensed form. This function took the 
-     * highways model and wrote it into condensed form. It is also useful for
-     * testing.
-     *
-     * @return the highways meta data string
-     */
-    public String getHighwaysMeta()
-    {
-            StringBuilder build = new StringBuilder();
-            build.append(lines.size());
-            build.append("\n");
-            for (FEPLine line : lines)
-            {
-                build.append(line.getLineMeta());
-            }
-            return build.toString();
-    }
-
+    
+    /** Returns a string of highways data. If MetaDataOnly is true, you get a full
+     *  dump of the highways meta data, which does not include dynamic loop values,
+     *  and does include the string location names. If MetaDataOnly is false,
+     *  dynamic loop values are included, and unnecessary information like string
+     *  location values are included.
+     * 
+     *  The FEPSimulator takes in the toCondensedFormat() output, with a MetaDataOnly
+     *  value of false, over the socket.
+     * 
+     *  The MetaDataOnly flag should be used to get a full dump of the highways
+     *  information. This was used to get the highways_fullmap.txt output.
+     * 
+     * @param MetaDataOnly Whether you want meta data, or a full dump for FEPSim
+     * @return String, highways data in condensed format
+     */
+    public String toCondensedFormat(boolean MetaDataOnly)
+    {
+        StringBuilder build = new StringBuilder();
+        build.append(lines.size());
+        build.append("\n");
+        for(FEPLine line : lines)
+        {
+            build.append(line.toCondensedFormat(MetaDataOnly));
+        }
+        return build.toString();
+    }
+    
     /**
      * Returns the Highways model data in XML format.
