Index: trunk/src/scriptbuilder/structures/ScriptEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/ScriptEvent.java	(revision 72)
+++ trunk/src/scriptbuilder/structures/ScriptEvent.java	(revision 76)
@@ -18,5 +18,5 @@
      * Compare the Script Events based on their type enum.
      *
-     * @param o the other script event to be compared
+     * @param a the other script event to be compared
      * @return -1, 0, or 1 depending on if this event's type comes before,
      * simultaneously, or after the other event's type in the enum list
@@ -130,4 +130,10 @@
     }
 
+    /**
+     * Generate a new script event object of the specified type.
+     *
+     * @param t the type of the script event
+     * @return a new I_ScriptEvent object matching the given type
+     */
     public static I_ScriptEvent factoryByType(ScriptEventType t)
     {
@@ -172,5 +178,11 @@
         }
     }
-    
+
+    /**
+     * Determines if the event in question is an evaluation event.
+     *
+     * @param event the event to be checked
+     * @return true if the event implements I_EvaluationEvent
+     */
     public static boolean isEvaluationEvent(I_ScriptEvent event)
     {
