Index: trunk/src/scriptbuilder/structures/events/ParamicsEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/ParamicsEvent.java	(revision 76)
+++ trunk/src/scriptbuilder/structures/events/ParamicsEvent.java	(revision 203)
@@ -10,5 +10,5 @@
 import scriptbuilder.structures.I_XML_Writable;
 import scriptbuilder.structures.ScriptEvent;
-import scriptbuilder.structures.XMLWriter;
+import scriptbuilder.structures.XMLBuilder;
 
 /**
@@ -40,18 +40,18 @@
     public String toXML()
     {
-        String output = XMLWriter.openTag(ELEMENT.PARAMICS.tag + " LocationID=\"" + locationID + "\"");
+        String output = XMLBuilder.openTag(ELEMENT.PARAMICS.tag + " LocationID=\"" + locationID + "\"");
 
-        output += XMLWriter.simpleTag(status, ELEMENT.Status);
+        output += XMLBuilder.simpleTag(status, ELEMENT.Status);
 
         if (!type.equals(""))
         {
-            output += XMLWriter.simpleTag(type, ELEMENT.Incident_type);
+            output += XMLBuilder.simpleTag(type, ELEMENT.Incident_type);
         }
 
         for (Integer lane : laneNums)
         {
-            output += XMLWriter.simpleTag("" + lane, ELEMENT.Lane_number);
+            output += XMLBuilder.simpleTag("" + lane, ELEMENT.Lane_number);
         }
-        output += XMLWriter.closeTag(ELEMENT.PARAMICS.tag);
+        output += XMLBuilder.closeTag(ELEMENT.PARAMICS.tag);
 
         return output;
