You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by at...@apache.org on 2014/09/15 15:36:45 UTC

svn commit: r922280 [3/40] - in /websites/production/commons/content/proper/commons-scxml: ./ 0.5/ 0.6/ 0.7/ 0.8/ 0.9/ apidocs/ apidocs/org/apache/commons/scxml2/ apidocs/org/apache/commons/scxml2/class-use/ apidocs/org/apache/commons/scxml2/env/ apido...

Modified: websites/production/commons/content/proper/commons-scxml/apidocs/index.html
==============================================================================
--- websites/production/commons/content/proper/commons-scxml/apidocs/index.html (original)
+++ websites/production/commons/content/proper/commons-scxml/apidocs/index.html Mon Sep 15 13:36:40 2014
@@ -11,6 +11,12 @@
     if (targetPage.indexOf(":") != -1 || (targetPage != "" && !validURL(targetPage)))
         targetPage = "undefined";
     function validURL(url) {
+        try {
+            url = decodeURIComponent(url);
+        }
+        catch (error) {
+            return false;
+        }
         var pos = url.indexOf(".html");
         if (pos == -1 || pos != url.length - 5)
             return false;
@@ -22,7 +28,8 @@
             if ('a' <= ch && ch <= 'z' ||
                     'A' <= ch && ch <= 'Z' ||
                     ch == '$' ||
-                    ch == '_') {
+                    ch == '_' ||
+                    ch.charCodeAt(0) > 127) {
                 allowNumber = true;
                 allowSep = true;
             } else if ('0' <= ch && ch <= '9'

Modified: websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/ActionExecutionContext.html
==============================================================================
--- websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/ActionExecutionContext.html (original)
+++ websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/ActionExecutionContext.html Mon Sep 15 13:36:40 2014
@@ -174,7 +174,7 @@ extends <a href="http://docs.oracle.com/
 <!--   -->
 </a>
 <h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
-<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait</a></code></li>
+<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li>
 </ul>
 </li>
 </ul>

Modified: websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/Builtin.html
==============================================================================
--- websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/Builtin.html (original)
+++ websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/Builtin.html Mon Sep 15 13:36:40 2014
@@ -145,7 +145,7 @@ implements <a href="http://docs.oracle.c
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Builtin.html#data(java.util.Map, java.lang.Object, java.lang.String)">data</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;namespaces,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Builtin.html#data(java.util.Map,%20java.lang.Object,%20java.lang.String)">data</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;namespaces,
         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;data,
         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;path)</code>
 <div class="block">A variant of the Data() function for Commons SCXML documents,
@@ -155,7 +155,7 @@ implements <a href="http://docs.oracle.c
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/org/w3c/dom/Node.html?is-external=true" title="class or interface in org.w3c.dom">Node</a></code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Builtin.html#dataNode(java.util.Map, java.lang.Object, java.lang.String)">dataNode</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;namespaces,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Builtin.html#dataNode(java.util.Map,%20java.lang.Object,%20java.lang.String)">dataNode</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;namespaces,
                 <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;data,
                 <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;path)</code>
 <div class="block">Implements the Data() function for Commons SCXML documents, that
@@ -164,7 +164,7 @@ implements <a href="http://docs.oracle.c
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>static boolean</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Builtin.html#isMember(java.util.Set, java.lang.String)">isMember</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;? extends <a href="../../../../org/apache/commons/scxml2/model/TransitionTarget.html" title="class in org.apache.commons.scxml2.model">TransitionTarget</a>&gt;&nbsp;allStates,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Builtin.html#isMember(java.util.Set,%20java.lang.String)">isMember</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;? extends <a href="../../../../org/apache/commons/scxml2/model/TransitionTarget.html" title="class in org.apache.commons.scxml2.model">TransitionTarget</a>&gt;&nbsp;allStates,
                 <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;state)</code>
 <div class="block">Implements the In() predicate for SCXML documents.</div>
 </td>
@@ -175,7 +175,7 @@ implements <a href="http://docs.oracle.c
 <!--   -->
 </a>
 <h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
-<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait</a></code></li>
+<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li>
 </ul>
 </li>
 </ul>

Modified: websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/Context.html
==============================================================================
--- websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/Context.html (original)
+++ websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/Context.html Mon Sep 15 13:36:40 2014
@@ -171,14 +171,14 @@
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Context.html#set(java.lang.String, java.lang.Object)">set</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Context.html#set(java.lang.String,%20java.lang.Object)">set</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name,
       <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</code>
 <div class="block">Assigns a new value to an existing variable or creates a new one.</div>
 </td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Context.html#setLocal(java.lang.String, java.lang.Object)">setLocal</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Context.html#setLocal(java.lang.String,%20java.lang.Object)">setLocal</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name,
                 <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</code>
 <div class="block">Assigns a new value to an existing variable or creates a new one.</div>
 </td>

Modified: websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/ErrorReporter.html
==============================================================================
--- websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/ErrorReporter.html (original)
+++ websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/ErrorReporter.html Mon Sep 15 13:36:40 2014
@@ -115,7 +115,7 @@
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/ErrorReporter.html#onError(java.lang.String, java.lang.String, java.lang.Object)">onError</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;errCode,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/ErrorReporter.html#onError(java.lang.String,%20java.lang.String,%20java.lang.Object)">onError</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;errCode,
               <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;errDetail,
               <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;errCtx)</code>
 <div class="block">Handler for reporting an error.</div>

Modified: websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/Evaluator.html
==============================================================================
--- websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/Evaluator.html (original)
+++ websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/Evaluator.html Mon Sep 15 13:36:40 2014
@@ -114,28 +114,28 @@
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Evaluator.html#eval(org.apache.commons.scxml2.Context, java.lang.String)">eval</a></strong>(<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;ctx,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Evaluator.html#eval(org.apache.commons.scxml2.Context,%20java.lang.String)">eval</a></strong>(<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;ctx,
         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;expr)</code>
 <div class="block">Evaluate an expression.</div>
 </td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a></code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Evaluator.html#evalCond(org.apache.commons.scxml2.Context, java.lang.String)">evalCond</a></strong>(<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;ctx,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Evaluator.html#evalCond(org.apache.commons.scxml2.Context,%20java.lang.String)">evalCond</a></strong>(<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;ctx,
                 <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;expr)</code>
 <div class="block">Evaluate a condition.</div>
 </td>
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/org/w3c/dom/Node.html?is-external=true" title="class or interface in org.w3c.dom">Node</a></code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Evaluator.html#evalLocation(org.apache.commons.scxml2.Context, java.lang.String)">evalLocation</a></strong>(<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;ctx,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Evaluator.html#evalLocation(org.apache.commons.scxml2.Context,%20java.lang.String)">evalLocation</a></strong>(<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;ctx,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;expr)</code>
 <div class="block">Evaluate a location that returns a Node within an XML data tree.</div>
 </td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Evaluator.html#evalScript(org.apache.commons.scxml2.Context, java.lang.String)">evalScript</a></strong>(<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;ctx,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/Evaluator.html#evalScript(org.apache.commons.scxml2.Context,%20java.lang.String)">evalScript</a></strong>(<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;ctx,
                     <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;script)</code>
 <div class="block">Evaluate a script.</div>
 </td>

Modified: websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/EventDispatcher.html
==============================================================================
--- websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/EventDispatcher.html (original)
+++ websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/EventDispatcher.html Mon Sep 15 13:36:40 2014
@@ -122,7 +122,7 @@
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/EventDispatcher.html#send(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Map, java.lang.Object, long, java.util.List)">send</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;sendId,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/EventDispatcher.html#send(java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.util.Map,%20java.lang.Object,%20long,%20java.util.List)">send</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;sendId,
         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;target,
         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;type,
         <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;event,

Modified: websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/NotificationRegistry.html
==============================================================================
--- websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/NotificationRegistry.html (original)
+++ websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/NotificationRegistry.html Mon Sep 15 13:36:40 2014
@@ -142,7 +142,7 @@ extends <a href="http://docs.oracle.com/
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/NotificationRegistry.html#fireOnEntry(org.apache.commons.scxml2.model.Observable, org.apache.commons.scxml2.model.EnterableState)">fireOnEntry</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/Observable.html" title="interface in org.apache.commons.scxml2.model">Observable</a>&nbsp;source,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/NotificationRegistry.html#fireOnEntry(org.apache.commons.scxml2.model.Observable,%20org.apache.commons.scxml2.model.EnterableState)">fireOnEntry</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/Observable.html" title="interface in org.apache.commons.scxml2.model">Observable</a>&nbsp;source,
                       <a href="../../../../org/apache/commons/scxml2/model/EnterableState.html" title="class in org.apache.commons.scxml2.model">EnterableState</a>&nbsp;state)</code>
 <div class="block">Inform all relevant listeners that a EnterableState has been
  entered.</div>
@@ -150,7 +150,7 @@ extends <a href="http://docs.oracle.com/
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/NotificationRegistry.html#fireOnExit(org.apache.commons.scxml2.model.Observable, org.apache.commons.scxml2.model.EnterableState)">fireOnExit</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/Observable.html" title="interface in org.apache.commons.scxml2.model">Observable</a>&nbsp;source,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/NotificationRegistry.html#fireOnExit(org.apache.commons.scxml2.model.Observable,%20org.apache.commons.scxml2.model.EnterableState)">fireOnExit</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/Observable.html" title="interface in org.apache.commons.scxml2.model">Observable</a>&nbsp;source,
                     <a href="../../../../org/apache/commons/scxml2/model/EnterableState.html" title="class in org.apache.commons.scxml2.model">EnterableState</a>&nbsp;state)</code>
 <div class="block">Inform all relevant listeners that a EnterableState has been
  exited.</div>
@@ -158,7 +158,7 @@ extends <a href="http://docs.oracle.com/
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/NotificationRegistry.html#fireOnTransition(org.apache.commons.scxml2.model.Observable, org.apache.commons.scxml2.model.TransitionTarget, org.apache.commons.scxml2.model.TransitionTarget, org.apache.commons.scxml2.model.Transition, java.lang.String)">fireOnTransition</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/Observable.html" title="interface in org.apache.commons.scxml2.model">Observable</a>&nbsp;source,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/NotificationRegistry.html#fireOnTransition(org.apache.commons.scxml2.model.Observable,%20org.apache.commons.scxml2.model.TransitionTarget,%20org.apache.commons.scxml2.model.TransitionTarget,%20org.apache.commons.scxml2.model.Transition,%20java.lang.String)">fireOnTransition</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/Observable.html" title="interface in org.apache.commons.scxml2.model">Observable</a>&nbsp;source,
                                 <a href="../../../../org/apache/commons/scxml2/model/TransitionTarget.html" title="class in org.apache.commons.scxml2.model">TransitionTarget</a>&nbsp;from,
                                 <a href="../../../../org/apache/commons/scxml2/model/TransitionTarget.html" title="class in org.apache.commons.scxml2.model">TransitionTarget</a>&nbsp;to,
                                 <a href="../../../../org/apache/commons/scxml2/model/Transition.html" title="class in org.apache.commons.scxml2.model">Transition</a>&nbsp;transition,
@@ -172,7 +172,7 @@ extends <a href="http://docs.oracle.com/
 <!--   -->
 </a>
 <h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
-<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait</a></code></li>
+<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li>
 </ul>
 </li>
 </ul>

Modified: websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/SCInstance.html
==============================================================================
--- websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/SCInstance.html (original)
+++ websites/production/commons/content/proper/commons-scxml/apidocs/org/apache/commons/scxml2/SCInstance.html Mon Sep 15 13:36:40 2014
@@ -99,7 +99,7 @@
 </dl>
 <hr>
 <br>
-<pre>public class <a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.42">SCInstance</a>
+<pre>public class <a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.43">SCInstance</a>
 extends <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>
 implements <a href="http://docs.oracle.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a></pre>
 <div class="block">The <code>SCInstance</code> performs book-keeping functions for
@@ -126,7 +126,7 @@ implements <a href="http://docs.oracle.c
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>protected </code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#SCInstance(org.apache.commons.scxml2.SCXMLIOProcessor, org.apache.commons.scxml2.Evaluator, org.apache.commons.scxml2.ErrorReporter)">SCInstance</a></strong>(<a href="../../../../org/apache/commons/scxml2/SCXMLIOProcessor.html" title="interface in org.apache.commons.scxml2">SCXMLIOProcessor</a>&nbsp;internalIOProcessor,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#SCInstance(org.apache.commons.scxml2.SCXMLIOProcessor,%20org.apache.commons.scxml2.Evaluator,%20org.apache.commons.scxml2.ErrorReporter)">SCInstance</a></strong>(<a href="../../../../org/apache/commons/scxml2/SCXMLIOProcessor.html" title="interface in org.apache.commons.scxml2">SCXMLIOProcessor</a>&nbsp;internalIOProcessor,
                     <a href="../../../../org/apache/commons/scxml2/Evaluator.html" title="interface in org.apache.commons.scxml2">Evaluator</a>&nbsp;evaluator,
                     <a href="../../../../org/apache/commons/scxml2/ErrorReporter.html" title="interface in org.apache.commons.scxml2">ErrorReporter</a>&nbsp;errorReporter)</code>
 <div class="block">Constructor</div>
@@ -149,7 +149,7 @@ implements <a href="http://docs.oracle.c
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>protected void</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#cloneDatamodel(org.apache.commons.scxml2.model.Datamodel, org.apache.commons.scxml2.Context, org.apache.commons.scxml2.Evaluator, org.apache.commons.scxml2.ErrorReporter)">cloneDatamodel</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/Datamodel.html" title="class in org.apache.commons.scxml2.model">Datamodel</a>&nbsp;datamodel,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#cloneDatamodel(org.apache.commons.scxml2.model.Datamodel,%20org.apache.commons.scxml2.Context,%20org.apache.commons.scxml2.Evaluator,%20org.apache.commons.scxml2.ErrorReporter)">cloneDatamodel</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/Datamodel.html" title="class in org.apache.commons.scxml2.model">Datamodel</a>&nbsp;datamodel,
                             <a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;ctx,
                             <a href="../../../../org/apache/commons/scxml2/Evaluator.html" title="interface in org.apache.commons.scxml2">Evaluator</a>&nbsp;evaluator,
                             <a href="../../../../org/apache/commons/scxml2/ErrorReporter.html" title="interface in org.apache.commons.scxml2">ErrorReporter</a>&nbsp;errorReporter)</code>
@@ -207,13 +207,11 @@ implements <a href="http://docs.oracle.c
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>boolean</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#isEmpty(org.apache.commons.scxml2.model.History)">isEmpty</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history)</code>
-<div class="block">Check whether we have prior history.</div>
-</td>
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#isRunning()">isRunning</a></strong>()</code>&nbsp;</td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#reset(org.apache.commons.scxml2.model.History)">reset</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history)</code>
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#resetConfiguration(org.apache.commons.scxml2.model.History)">resetConfiguration</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history)</code>
 <div class="block">Resets the history state.</div>
 </td>
 </tr>
@@ -237,7 +235,7 @@ implements <a href="http://docs.oracle.c
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>void</code></td>
-<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#setLastConfiguration(org.apache.commons.scxml2.model.History, java.util.Set)">setLastConfiguration</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history,
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#setLastConfiguration(org.apache.commons.scxml2.model.History,%20java.util.Set)">setLastConfiguration</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history,
                                         <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="../../../../org/apache/commons/scxml2/model/EnterableState.html" title="class in org.apache.commons.scxml2.model">EnterableState</a>&gt;&nbsp;lc)</code>
 <div class="block">Set the last configuration for this history.</div>
 </td>
@@ -250,6 +248,12 @@ implements <a href="http://docs.oracle.c
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>protected void</code></td>
+<td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#setRunning(boolean)">setRunning</a></strong>(boolean&nbsp;running)</code>
+<div class="block">Sets the running status of the state machine</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected void</code></td>
 <td class="colLast"><code><strong><a href="../../../../org/apache/commons/scxml2/SCInstance.html#setStateMachine(org.apache.commons.scxml2.model.SCXML)">setStateMachine</a></strong>(<a href="../../../../org/apache/commons/scxml2/model/SCXML.html" title="class in org.apache.commons.scxml2.model">SCXML</a>&nbsp;stateMachine)</code>
 <div class="block">Sets the state machine for this instance.</div>
 </td>
@@ -260,7 +264,7 @@ implements <a href="http://docs.oracle.c
 <!--   -->
 </a>
 <h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
-<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait</a></code></li>
+<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang
 /Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li>
 </ul>
 </li>
 </ul>
@@ -282,7 +286,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockListLast">
 <li class="blockList">
 <h4>SCInstance</h4>
-<pre>protected&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.125">SCInstance</a>(<a href="../../../../org/apache/commons/scxml2/SCXMLIOProcessor.html" title="interface in org.apache.commons.scxml2">SCXMLIOProcessor</a>&nbsp;internalIOProcessor,
+<pre>protected&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.131">SCInstance</a>(<a href="../../../../org/apache/commons/scxml2/SCXMLIOProcessor.html" title="interface in org.apache.commons.scxml2">SCXMLIOProcessor</a>&nbsp;internalIOProcessor,
           <a href="../../../../org/apache/commons/scxml2/Evaluator.html" title="interface in org.apache.commons.scxml2">Evaluator</a>&nbsp;evaluator,
           <a href="../../../../org/apache/commons/scxml2/ErrorReporter.html" title="interface in org.apache.commons.scxml2">ErrorReporter</a>&nbsp;errorReporter)</pre>
 <div class="block">Constructor</div>
@@ -303,7 +307,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>initialize</h4>
-<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.138">initialize</a>()
+<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.144">initialize</a>()
                    throws <a href="../../../../org/apache/commons/scxml2/model/ModelException.html" title="class in org.apache.commons.scxml2.model">ModelException</a></pre>
 <div class="block">(re)Initializes the state machine instance, clearing all variable contexts, histories and current status,
  and clones the SCXML root datamodel into the root context.</div>
@@ -317,7 +321,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>detach</h4>
-<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.166">detach</a>()</pre>
+<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.173">detach</a>()</pre>
 <div class="block">Detach this state machine instance to allow external serialization.
  <p>
  This clears the internal I/O processor, evaluator and errorReporter members.
@@ -330,7 +334,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>setInternalIOProcessor</h4>
-<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.175">setInternalIOProcessor</a>(<a href="../../../../org/apache/commons/scxml2/SCXMLIOProcessor.html" title="interface in org.apache.commons.scxml2">SCXMLIOProcessor</a>&nbsp;internalIOProcessor)</pre>
+<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.182">setInternalIOProcessor</a>(<a href="../../../../org/apache/commons/scxml2/SCXMLIOProcessor.html" title="interface in org.apache.commons.scxml2">SCXMLIOProcessor</a>&nbsp;internalIOProcessor)</pre>
 <div class="block">Sets the I/O Processor for the internal event queue</div>
 <dl><dt><span class="strong">Parameters:</span></dt><dd><code>internalIOProcessor</code> - </dd></dl>
 </li>
@@ -341,7 +345,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>setEvaluator</h4>
-<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.188">setEvaluator</a>(<a href="../../../../org/apache/commons/scxml2/Evaluator.html" title="interface in org.apache.commons.scxml2">Evaluator</a>&nbsp;evaluator)
+<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.195">setEvaluator</a>(<a href="../../../../org/apache/commons/scxml2/Evaluator.html" title="interface in org.apache.commons.scxml2">Evaluator</a>&nbsp;evaluator)
                      throws <a href="../../../../org/apache/commons/scxml2/model/ModelException.html" title="class in org.apache.commons.scxml2.model">ModelException</a></pre>
 <div class="block">Set or re-attach the evaluator
  <p>
@@ -359,7 +363,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>setErrorReporter</h4>
-<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.207">setErrorReporter</a>(<a href="../../../../org/apache/commons/scxml2/ErrorReporter.html" title="interface in org.apache.commons.scxml2">ErrorReporter</a>&nbsp;errorReporter)
+<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.214">setErrorReporter</a>(<a href="../../../../org/apache/commons/scxml2/ErrorReporter.html" title="interface in org.apache.commons.scxml2">ErrorReporter</a>&nbsp;errorReporter)
                          throws <a href="../../../../org/apache/commons/scxml2/model/ModelException.html" title="class in org.apache.commons.scxml2.model">ModelException</a></pre>
 <div class="block">Set or re-attach the error reporter</div>
 <dl><dt><span class="strong">Parameters:</span></dt><dd><code>errorReporter</code> - The error reporter for this state machine instance.</dd>
@@ -373,7 +377,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>getStateMachine</h4>
-<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/model/SCXML.html" title="class in org.apache.commons.scxml2.model">SCXML</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.217">getStateMachine</a>()</pre>
+<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/model/SCXML.html" title="class in org.apache.commons.scxml2.model">SCXML</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.224">getStateMachine</a>()</pre>
 <dl><dt><span class="strong">Returns:</span></dt><dd>Return the state machine for this instance</dd></dl>
 </li>
 </ul>
@@ -383,7 +387,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>setStateMachine</h4>
-<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.230">setStateMachine</a>(<a href="../../../../org/apache/commons/scxml2/model/SCXML.html" title="class in org.apache.commons.scxml2.model">SCXML</a>&nbsp;stateMachine)
+<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.237">setStateMachine</a>(<a href="../../../../org/apache/commons/scxml2/model/SCXML.html" title="class in org.apache.commons.scxml2.model">SCXML</a>&nbsp;stateMachine)
                         throws <a href="../../../../org/apache/commons/scxml2/model/ModelException.html" title="class in org.apache.commons.scxml2.model">ModelException</a></pre>
 <div class="block">Sets the state machine for this instance.
  <p>
@@ -401,7 +405,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>cloneDatamodel</h4>
-<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.252">cloneDatamodel</a>(<a href="../../../../org/apache/commons/scxml2/model/Datamodel.html" title="class in org.apache.commons.scxml2.model">Datamodel</a>&nbsp;datamodel,
+<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.259">cloneDatamodel</a>(<a href="../../../../org/apache/commons/scxml2/model/Datamodel.html" title="class in org.apache.commons.scxml2.model">Datamodel</a>&nbsp;datamodel,
                   <a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;ctx,
                   <a href="../../../../org/apache/commons/scxml2/Evaluator.html" title="interface in org.apache.commons.scxml2">Evaluator</a>&nbsp;evaluator,
                   <a href="../../../../org/apache/commons/scxml2/ErrorReporter.html" title="interface in org.apache.commons.scxml2">ErrorReporter</a>&nbsp;errorReporter)</pre>
@@ -415,17 +419,41 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>getCurrentStatus</h4>
-<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/Status.html" title="class in org.apache.commons.scxml2">Status</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.292">getCurrentStatus</a>()</pre>
+<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/Status.html" title="class in org.apache.commons.scxml2">Status</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.299">getCurrentStatus</a>()</pre>
 <dl><dt><span class="strong">Returns:</span></dt><dd>Returns the current status (active atomic states) for this instance</dd></dl>
 </li>
 </ul>
+<a name="isRunning()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isRunning</h4>
+<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.307">isRunning</a>()</pre>
+<dl><dt><span class="strong">Returns:</span></dt><dd>Returns if the state machine is running</dd></dl>
+</li>
+</ul>
+<a name="setRunning(boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>setRunning</h4>
+<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.316">setRunning</a>(boolean&nbsp;running)
+                   throws <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/IllegalStateException.html?is-external=true" title="class or interface in java.lang">IllegalStateException</a></pre>
+<div class="block">Sets the running status of the state machine</div>
+<dl><dt><span class="strong">Parameters:</span></dt><dd><code>running</code> - flag indicating the running status of the state machine</dd>
+<dt><span class="strong">Throws:</span></dt>
+<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/IllegalStateException.html?is-external=true" title="class or interface in java.lang">IllegalStateException</a></code> - Exception thrown if trying to set the state machine running when in a Final state</dd></dl>
+</li>
+</ul>
 <a name="getRootContext()">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
 <h4>getRootContext</h4>
-<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.301">getRootContext</a>()</pre>
+<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.328">getRootContext</a>()</pre>
 <div class="block">Get the root context.</div>
 <dl><dt><span class="strong">Returns:</span></dt><dd>The root context.</dd></dl>
 </li>
@@ -436,7 +464,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>setRootContext</h4>
-<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.312">setRootContext</a>(<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;context)</pre>
+<pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.339">setRootContext</a>(<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;context)</pre>
 <div class="block">Set or replace the root context.</div>
 <dl><dt><span class="strong">Parameters:</span></dt><dd><code>context</code> - The new root context.</dd></dl>
 </li>
@@ -447,7 +475,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>getSystemContext</h4>
-<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.327">getSystemContext</a>()</pre>
+<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.354">getSystemContext</a>()</pre>
 <div class="block">Get the unwrapped (modifiable) system context.</div>
 <dl><dt><span class="strong">Returns:</span></dt><dd>The unwrapped system context.</dd></dl>
 </li>
@@ -458,7 +486,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>getGlobalContext</h4>
-<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.344">getGlobalContext</a>()</pre>
+<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.371">getGlobalContext</a>()</pre>
 <dl><dt><span class="strong">Returns:</span></dt><dd>Returns the global context, which is the top context <em>within</em> the state machine.</dd></dl>
 </li>
 </ul>
@@ -468,7 +496,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>getContext</h4>
-<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.361">getContext</a>(<a href="../../../../org/apache/commons/scxml2/model/EnterableState.html" title="class in org.apache.commons.scxml2.model">EnterableState</a>&nbsp;state)</pre>
+<pre>public&nbsp;<a href="../../../../org/apache/commons/scxml2/Context.html" title="interface in org.apache.commons.scxml2">Context</a>&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.388">getContext</a>(<a href="../../../../org/apache/commons/scxml2/model/EnterableState.html" title="class in org.apache.commons.scxml2.model">EnterableState</a>&nbsp;state)</pre>
 <div class="block">Get the context for an EnterableState or create one if not created before.</div>
 <dl><dt><span class="strong">Parameters:</span></dt><dd><code>state</code> - The EnterableState.</dd>
 <dt><span class="strong">Returns:</span></dt><dd>The context.</dd></dl>
@@ -480,7 +508,7 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>getLastConfiguration</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="../../../../org/apache/commons/scxml2/model/EnterableState.html" title="class in org.apache.commons.scxml2.model">EnterableState</a>&gt;&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.411">getLastConfiguration</a>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history)</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="../../../../org/apache/commons/scxml2/model/EnterableState.html" title="class in org.apache.commons.scxml2.model">EnterableState</a>&gt;&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.438">getLastConfiguration</a>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history)</pre>
 <div class="block">Get the last configuration for this history.</div>
 <dl><dt><span class="strong">Parameters:</span></dt><dd><code>history</code> - The history.</dd>
 <dt><span class="strong">Returns:</span></dt><dd>Returns the lastConfiguration.</dd></dl>
@@ -492,31 +520,19 @@ implements <a href="http://docs.oracle.c
 <ul class="blockList">
 <li class="blockList">
 <h4>setLastConfiguration</h4>
-<pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.426">setLastConfiguration</a>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history,
+<pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.452">setLastConfiguration</a>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history,
                         <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="../../../../org/apache/commons/scxml2/model/EnterableState.html" title="class in org.apache.commons.scxml2.model">EnterableState</a>&gt;&nbsp;lc)</pre>
 <div class="block">Set the last configuration for this history.</div>
 <dl><dt><span class="strong">Parameters:</span></dt><dd><code>history</code> - The history.</dd><dd><code>lc</code> - The lastConfiguration to set.</dd></dl>
 </li>
 </ul>
-<a name="isEmpty(org.apache.commons.scxml2.model.History)">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>isEmpty</h4>
-<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.439">isEmpty</a>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history)</pre>
-<div class="block">Check whether we have prior history.</div>
-<dl><dt><span class="strong">Parameters:</span></dt><dd><code>history</code> - The history.</dd>
-<dt><span class="strong">Returns:</span></dt><dd>Whether we have a non-empty last configuration</dd></dl>
-</li>
-</ul>
-<a name="reset(org.apache.commons.scxml2.model.History)">
+<a name="resetConfiguration(org.apache.commons.scxml2.model.History)">
 <!--   -->
 </a>
 <ul class="blockListLast">
 <li class="blockList">
-<h4>reset</h4>
-<pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.451">reset</a>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history)</pre>
+<h4>resetConfiguration</h4>
+<pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/commons/scxml2/SCInstance.html#line.464">resetConfiguration</a>(<a href="../../../../org/apache/commons/scxml2/model/History.html" title="class in org.apache.commons.scxml2.model">History</a>&nbsp;history)</pre>
 <div class="block">Resets the history state.
 
  <p>Note: used for testing purposes only</p></div>