Index: trunk/src/scriptbuilder/structures/SimulationScript.java
===================================================================
--- trunk/src/scriptbuilder/structures/SimulationScript.java	(revision 65)
+++ trunk/src/scriptbuilder/structures/SimulationScript.java	(revision 76)
@@ -50,6 +50,12 @@
     };
 
+    /**
+     * The file to which this script will be saved.
+     */
     public File saveFile = null;
 
+    /**
+     * The name of this script.
+     */
     public String title = "";
 
@@ -160,4 +166,10 @@
     }
 
+    /**
+     * Add a new incident to the script.
+     *
+     * @param sci the incident to be added.
+     * @return true if there was enough room to add this incident.
+     */
     public boolean addIncident(ScriptIncident sci)
     {
@@ -170,4 +182,9 @@
     }
 
+    /**
+     * Write this script, in proper XML format, to the file in question.
+     *
+     * @param f the destination savefile to be written.
+     */
     public void saveScriptToFile(File f)
     {
@@ -262,4 +279,10 @@
     }
 
+    /**
+     * Counts the number of incidents currently running.
+     *
+     * @return the number of non-null incidents currently in the script. A
+     * number between 0 and INCIDENT_FILL_COUNT, inclusive.
+     */
     public int incidentCount()
     {
