Index: trunk/src/scriptbuilder/structures/Location_Info.java
===================================================================
--- trunk/src/scriptbuilder/structures/Location_Info.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/Location_Info.java	(revision 203)
@@ -21,15 +21,15 @@
     public String toXML()
     {
-        String output = XMLWriter.openTag(ELEMENT.LOCATION_INFO.tag + " ID=\"" + Location_ID + "\"");
+        String output = XMLBuilder.openTag(ELEMENT.LOCATION_INFO.tag + " ID=\"" + Location_ID + "\"");
 
-        output += XMLWriter.simpleTag(Route, ELEMENT.Route);
+        output += XMLBuilder.simpleTag(Route, ELEMENT.Route);
 
-        output += XMLWriter.simpleTag(Direction, ELEMENT.Direction);
+        output += XMLBuilder.simpleTag(Direction, ELEMENT.Direction);
 
-        output += XMLWriter.simpleTag(Postmile, ELEMENT.Postmile);
+        output += XMLBuilder.simpleTag(Postmile, ELEMENT.Postmile);
 
-        output += XMLWriter.simpleTag(Location_type, ELEMENT.Location_type);
+        output += XMLBuilder.simpleTag(Location_type, ELEMENT.Location_type);
 
-        output += XMLWriter.closeTag(ELEMENT.LOCATION_INFO.tag);
+        output += XMLBuilder.closeTag(ELEMENT.LOCATION_INFO.tag);
 
         return output;
