Index: trunk/src/atmsdriver/FEPLineLoader.java
===================================================================
--- trunk/src/atmsdriver/NetworkLoader.java	(revision 90)
+++ trunk/src/atmsdriver/FEPLineLoader.java	(revision 103)
@@ -13,22 +13,18 @@
 import java.util.logging.Logger;
 
-/** The NetworkReader loads all static data for the traffic network through
- *  network lookup files. 
+/** The FEPLineLoader loads all static data for the FEPLines, using the station
+ *  and loop lookup files.
+ * 
+ *  THIS CLASS WILL BE REMOVED AND THE LOADING OF FEPLINES WILL BE THE RESPONSIBILITY
+ *  OF THE HIGHWAYS.JAVA CLASS FOR PROPER OOP. JUST USING FOR NOW BECAUSE IT WORKS.
  * 
  *  The public method getFEPLines() method can be used to get all the FEPLines 
-  within a network. All other methods are private and are used to construct
-  the FEPLines.
- 
-  The "LDSFile" contains Station and FEPLine information.
-  ex.
-   < Insert file here >
- *  The "loopFile" contains individual LoopDetector information.
- *  ex.
- *   < Insert file here > 
+ *  within the network. All other methods are private and are used to construct
+ *  the FEPLines.
  *
  * @author John A. Torres
  * @version 09/10/2017
  */
-public class NetworkLoader {
+public class FEPLineLoader {
     // Two network config files
     private final File LDSFile;
@@ -43,5 +39,5 @@
      * @param loopFile contains individual LoopDetector static data
      */
-    public NetworkLoader(File LDSFile, File loopFile)
+    public FEPLineLoader(File LDSFile, File loopFile)
     {
         this.LDSFile = LDSFile;
@@ -176,5 +172,5 @@
             }
         } catch (FileNotFoundException ex) {
-            Logger.getLogger(NetworkLoader.class.getName()).log(Level.SEVERE, null, ex);
+            Logger.getLogger(FEPLineLoader.class.getName()).log(Level.SEVERE, null, ex);
         }
     }
