Index: trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java	(revision 155)
+++ trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java	(revision 161)
@@ -19,5 +19,5 @@
  * @author Bryan McGuffin
  */
-public class CHPRadioEvent extends ScriptEvent implements I_XML_Writable
+public class CHPRadioEvent extends ScriptEvent implements I_XML_Writable, I_AudioEvent
 {
 
@@ -44,5 +44,11 @@
      */
     public String radioFile = "";
-
+    
+    /**
+     * ID
+     */
+    public String id = "";
+    
+    
     /**
      * Returns the contents of the CHPRadioEvent to make recording easier.
@@ -57,4 +63,22 @@
         }
         return fileContents;
+    }
+    
+    @Override
+    public String getFileName()
+    {
+        return radioFile;
+    }
+    
+    @Override
+    public String getID()
+    {
+        return id;
+    }
+    
+    @Override
+    public void setFileName(String s)
+    {
+        radioFile = s;
     }
     
