Index: trunk/src/scriptbuilder/structures/events/RadioEvaluationEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/RadioEvaluationEvent.java	(revision 76)
+++ trunk/src/scriptbuilder/structures/events/RadioEvaluationEvent.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;
 
 /**
@@ -60,5 +60,5 @@
     public String toXML()
     {
-        String output = XMLWriter.openTag(ELEMENT.RADIO_EVALUATION.tag);
+        String output = XMLBuilder.openTag(ELEMENT.RADIO_EVALUATION.tag);
         if (expectedAction != null)
         {
@@ -69,8 +69,8 @@
                     str = "";
                 }
-                output += XMLWriter.simpleTag(str, ELEMENT.EXPECTED_ACTION);
+                output += XMLBuilder.simpleTag(str, ELEMENT.EXPECTED_ACTION);
             }
         }
-        output += XMLWriter.closeTag(ELEMENT.RADIO_EVALUATION.tag);
+        output += XMLBuilder.closeTag(ELEMENT.RADIO_EVALUATION.tag);
 
         return output;
