You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ra...@apache.org on 2008/04/19 03:34:35 UTC

svn commit: r649736 - /commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/SCXMLExecutor.java

Author: rahul
Date: Fri Apr 18 18:34:34 2008
New Revision: 649736

URL: http://svn.apache.org/viewvc?rev=649736&view=rev
Log:
Javadoc notes, some operations shouldn't be performed (i.e. behavior is undefined) once the executor is initiated.

Modified:
    commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/SCXMLExecutor.java

Modified: commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/SCXMLExecutor.java
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/SCXMLExecutor.java?rev=649736&r1=649735&r2=649736&view=diff
==============================================================================
--- commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/SCXMLExecutor.java (original)
+++ commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/SCXMLExecutor.java Fri Apr 18 18:34:34 2008
@@ -274,6 +274,7 @@
 
     /**
      * Set the expression evaluator.
+     * <b>NOTE:</b> Should only be used before the executor is set in motion.
      *
      * @param evaluator The evaluator to set.
      */
@@ -292,6 +293,7 @@
 
     /**
      * Set the root context for this execution.
+     * <b>NOTE:</b> Should only be used before the executor is set in motion.
      *
      * @param rootContext The Context that ties to the host environment.
      */
@@ -319,6 +321,7 @@
 
     /**
      * Set the state machine to be executed.
+     * <b>NOTE:</b> Should only be used before the executor is set in motion.
      *
      * @param stateMachine The stateMachine to set.
      */