Index: trunk/src/scriptbuilder/structures/events/ATMSEvaluationEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/ATMSEvaluationEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/ATMSEvaluationEvent.java	(revision 76)
@@ -20,4 +20,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public ATMSEvaluationEvent()
     {
@@ -25,4 +28,7 @@
     }
 
+    /**
+     * A list of the expected actions held by this evaluation event.
+     */
     public ArrayList<String> expectedAction = new ArrayList<String>();
 
Index: trunk/src/scriptbuilder/structures/events/CCTVEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/CCTVEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/CCTVEvent.java	(revision 76)
@@ -12,6 +12,6 @@
 
 /**
- * Data model for a CCTV event. (Just a stub; CCTV events aren't currently
- * used.) A CCTV event has, for now, a string message.
+ * Data model for a CCTV event(Just a stub; CCTV events aren't currently
+ * used). A CCTV event has, for now, a string message.
  *
  * @author Bryan McGuffin
@@ -20,4 +20,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public CCTVEvent()
     {
@@ -25,4 +28,7 @@
     }
 
+    /**
+     * The message represented by this event.
+     */
     public String message = "";
 
Index: trunk/src/scriptbuilder/structures/events/ParamicsEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/ParamicsEvent.java	(revision 47)
+++ trunk/src/scriptbuilder/structures/events/ParamicsEvent.java	(revision 76)
@@ -21,4 +21,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public ParamicsEvent()
     {
Index: trunk/src/scriptbuilder/structures/events/AudioEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/AudioEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/AudioEvent.java	(revision 76)
@@ -20,4 +20,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public AudioEvent()
     {
@@ -25,6 +28,12 @@
     }
 
+    /**
+     * Length of the audio to be played, in seconds.
+     */
     public Integer audioLength = 0;
 
+    /**
+     * File path for the audio file.
+     */
     public String audioPath = "";
 
Index: trunk/src/scriptbuilder/structures/events/MaintenanceRadioEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/MaintenanceRadioEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/MaintenanceRadioEvent.java	(revision 76)
@@ -20,4 +20,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public MaintenanceRadioEvent()
     {
Index: trunk/src/scriptbuilder/structures/events/TowEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/TowEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/TowEvent.java	(revision 76)
@@ -20,4 +20,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public TowEvent()
     {
Index: trunk/src/scriptbuilder/structures/events/CMSEvaluationEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/CMSEvaluationEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/CMSEvaluationEvent.java	(revision 76)
@@ -21,4 +21,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public CMSEvaluationEvent()
     {
Index: trunk/src/scriptbuilder/structures/events/UnitEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/UnitEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/UnitEvent.java	(revision 76)
@@ -20,4 +20,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public UnitEvent()
     {
Index: trunk/src/scriptbuilder/structures/events/CADEvaluationEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/CADEvaluationEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/CADEvaluationEvent.java	(revision 76)
@@ -20,4 +20,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public CADEvaluationEvent()
     {
@@ -25,4 +28,7 @@
     }
 
+    /**
+     * A list of the expected actions held by this evaluation event.
+     */
     public ArrayList<String> expectedAction = new ArrayList<String>();
 
Index: trunk/src/scriptbuilder/structures/events/TMTRadioEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/TMTRadioEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/TMTRadioEvent.java	(revision 76)
@@ -20,4 +20,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public TMTRadioEvent()
     {
Index: trunk/src/scriptbuilder/structures/events/TelephoneEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/TelephoneEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/TelephoneEvent.java	(revision 76)
@@ -22,4 +22,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public TelephoneEvent()
     {
Index: trunk/src/scriptbuilder/structures/events/RadioEvaluationEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/RadioEvaluationEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/RadioEvaluationEvent.java	(revision 76)
@@ -20,4 +20,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public RadioEvaluationEvent()
     {
@@ -25,4 +28,7 @@
     }
 
+    /**
+     * A list of the expected actions held by this evaluation event.
+     */
     public ArrayList<String> expectedAction = new ArrayList<String>();
 
Index: trunk/src/scriptbuilder/structures/events/ActivityLogEvaluationEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/ActivityLogEvaluationEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/ActivityLogEvaluationEvent.java	(revision 76)
@@ -20,4 +20,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public ActivityLogEvaluationEvent()
     {
@@ -25,4 +28,7 @@
     }
 
+    /**
+     * A list of the expected actions held by this evaluation event.
+     */
     public ArrayList<String> expectedAction = new ArrayList<String>();
 
Index: trunk/src/scriptbuilder/structures/events/CADEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/CADEvent.java	(revision 47)
+++ trunk/src/scriptbuilder/structures/events/CADEvent.java	(revision 76)
@@ -21,4 +21,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public CADEvent()
     {
@@ -26,6 +29,12 @@
     }
 
+    /**
+     * True if this CAD event has sub-events.
+     */
     public boolean hasSubEvents = false;
 
+    /**
+     * Description of this event.
+     */
     public String detail = "";
 
Index: trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java	(revision 76)
@@ -22,4 +22,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public CHPRadioEvent()
     {
@@ -27,8 +30,17 @@
     }
 
+    /**
+     * List of the lines of dialog in this event.
+     */
     public ArrayList<String> lines = new ArrayList<String>();
 
+    /**
+     * List of the corresponding roles for each line of dialog.
+     */
     public ArrayList<String> roles = new ArrayList<String>();
 
+    /**
+     * Path for the audio file to be played during this event.
+     */
     public String radioFile = "";
 
Index: trunk/src/scriptbuilder/structures/events/FacilitatorEvaluationEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/FacilitatorEvaluationEvent.java	(revision 46)
+++ trunk/src/scriptbuilder/structures/events/FacilitatorEvaluationEvent.java	(revision 76)
@@ -20,4 +20,7 @@
 {
 
+    /**
+     * Constructor.
+     */
     public FacilitatorEvaluationEvent()
     {
@@ -25,4 +28,7 @@
     }
 
+    /**
+     * A list of the expected actions held by this evaluation event.
+     */
     public ArrayList<String> expectedAction = new ArrayList<String>();
 
