Index: trunk/src/scriptbuilder/structures/ScriptEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/ScriptEvent.java	(revision 145)
+++ trunk/src/scriptbuilder/structures/ScriptEvent.java	(revision 185)
@@ -129,5 +129,5 @@
     public String toString()
     {
-        return this.type.toString() + " - [Event Description]";
+        return this.type.toString() + " - [Event Details will appear here.]";
     }
 
Index: trunk/src/scriptbuilder/structures/events/CADEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/CADEvent.java	(revision 76)
+++ trunk/src/scriptbuilder/structures/events/CADEvent.java	(revision 185)
@@ -50,3 +50,12 @@
         return output;
     }
+    /** 
+     * @return a string representation of this event. Used for example in
+     * Script Events Panel of Incident Editor window.
+     */
+    @Override
+    public String toString()
+    {
+        return getScriptEventType().toString() + " " + detail; 
+    }
 }
