Index: /trunk/src/atmsdriver/model/Station.java
===================================================================
--- /trunk/src/atmsdriver/model/Station.java	(revision 90)
+++ /trunk/src/atmsdriver/model/Station.java	(revision 92)
@@ -9,15 +9,15 @@
  *
  * A Station (LDS) contains static meta data about the station, and two dynamic
- * attributes, MLTotVol and OppTotVol.  *
- * A single LDS contains multiple LoopDetectors, which contain data for a single
- * lane on one direction of the freeway. A LDS is specific to a single freeway,
- * direction, and postmile.
+ * attributes, MLTotVol and OppTotVol. * A single LDS contains multiple
+ * LoopDetectors, which contain data for a single lane on one direction of the
+ * freeway. A LDS is specific to a single freeway, direction, and postmile.
  *
  * @author John A. Torres
  * @version 9/10/2017
  */
-public class Station implements Comparable {
+public class Station implements Comparable
+{
+
     /* Static Station meta data */
-
     final private int lineNum;
     final private int ldsID; // double check
@@ -36,5 +36,6 @@
     public Station(int lineNum, int ldsID, int drop,
             String location, List<LoopDetector> loops, int hwy,
-            DIRECTION direction, double postmile) {
+            DIRECTION direction, double postmile)
+    {
         this.lineNum = lineNum;
         this.ldsID = ldsID;
@@ -54,10 +55,10 @@
         return this.highwayNum;
     }
-    
+
     public DIRECTION getDirection()
     {
         return this.direction;
     }
-    
+
     /**
      * Returns the station metadata in condensed form. This is just a quick
@@ -67,5 +68,6 @@
      * @return station metadata
      */
-    public String getStationMeta() {
+    public String getStationMeta()
+    {
         StringBuilder build = new StringBuilder();
         build.append(Integer.toString(this.ldsID));
@@ -83,5 +85,6 @@
         build.append(this.location);
         build.append("\n");
-        for (LoopDetector loop : loops) {
+        for (LoopDetector loop : loops)
+        {
             build.append(loop.getLoopMeta());
         }
@@ -89,17 +92,24 @@
     }
 
-    public double getPostmile() {
+    public double getPostmile()
+    {
         return postmile;
     }
 
-    /** Compare this Station to another by postmile.
-     * Note: This might be better as a Comparator since it checks only one field.
+    /**
+     * Compare this Station to another by postmile. Note: This might be better
+     * as a Comparator since it checks only one field.
      */
     @Override
-    public int compareTo(Object otherStation) {
+    public int compareTo(Object otherStation)
+    {
         // check for identity
-        if (this == otherStation) return 0;
+        if (this == otherStation)
+        {
+            return 0;
+        }
         // check that Object is of type Station, if not throw exception
-        if (!(otherStation instanceof Station)) {
+        if (!(otherStation instanceof Station))
+        {
             throw new ClassCastException("A Station object expected.");
         }
@@ -111,7 +121,10 @@
         // set appropriate comparable return value
         int retval = 0;
-        if (val > 0) {
+        if (val > 0)
+        {
             retval = 1;
-        } else if (val < 0) {
+        }
+        else if (val < 0)
+        {
             retval = -1;
         }
@@ -120,5 +133,6 @@
     }
 
-    private static enum XML_TAGS {
+    private static enum XML_TAGS
+    {
 
         STATION("Station"),
@@ -136,10 +150,12 @@
         String tag;
 
-        private XML_TAGS(String n) {
+        private XML_TAGS(String n)
+        {
             tag = n;
         }
     }
 
-    public void toXML(Element currElem) {
+    public void toXML(Element currElem)
+    {
         Document theDoc = currElem.getOwnerDocument();
 
@@ -168,5 +184,5 @@
 
         Element directionElement = theDoc.createElement(XML_TAGS.DIRECTION.tag);
-        directionElement.appendChild(theDoc.createTextNode(""+this.direction.getLetter()));
+        directionElement.appendChild(theDoc.createTextNode("" + this.direction.getLetter()));
         stationElement.appendChild(directionElement);
 
@@ -186,5 +202,6 @@
         stationElement.appendChild(loopsElement);
 
-        for (LoopDetector loop : loops) {
+        for (LoopDetector loop : loops)
+        {
             loop.toXML(loopsElement);
         }
@@ -197,5 +214,6 @@
      * @version 9/10/2017
      */
-    public static enum DIRECTION {
+    public static enum DIRECTION
+    {
 
         NORTH,
@@ -207,13 +225,14 @@
         private static String allLetters = "NSEW";
 
-        /** Return the first letter of this enum.
-         * 
+        /**
+         * Return the first letter of this enum.
+         *
          * @return String first letter of this enum.
          */
         public String getLetter()
         {
-            return this.toString().substring(0,1);
-        }
-        
+            return this.toString().substring(0, 1);
+        }
+
         /**
          * Returns a direction given its first character.
@@ -227,5 +246,5 @@
             return values()[allLetters.indexOf(letter.charAt(0))];
         }
-        
+
     }
 }
