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:36:55 UTC

svn commit: r649737 - /commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/SCXMLExecutor.java

Author: rahul
Date: Fri Apr 18 18:36:53 2008
New Revision: 649737

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

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

Modified: commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/SCXMLExecutor.java
URL: http://svn.apache.org/viewvc/commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/SCXMLExecutor.java?rev=649737&r1=649736&r2=649737&view=diff
==============================================================================
--- commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/SCXMLExecutor.java (original)
+++ commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/SCXMLExecutor.java Fri Apr 18 18:36:53 2008
@@ -271,6 +271,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.
      */
@@ -289,6 +290,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.
      */
@@ -316,6 +318,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.
      */