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/04/03 09:13:44 UTC

svn commit: r1584272 [6/6] - in /commons/proper/scxml/trunk/src: main/java/org/apache/commons/scxml2/ main/java/org/apache/commons/scxml2/env/ main/java/org/apache/commons/scxml2/env/groovy/ main/java/org/apache/commons/scxml2/env/javascript/ main/java...

Modified: commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-01.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-01.xml?rev=1584272&r1=1584271&r2=1584272&view=diff
==============================================================================
--- commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-01.xml (original)
+++ commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-01.xml Thu Apr  3 07:13:42 2014
@@ -21,7 +21,7 @@
 
     <!-- Start with a simple state -->
     <state id="ten">
-        <transition event="ten.done" target="twenty" />
+        <transition event="done.state.ten" target="twenty" />
     </state>
 
     <!-- Follow up with a composite state -->
@@ -36,11 +36,11 @@
         </onentry>
 
         <state id="twenty_one">
-            <transition event="twenty_one.done" target="twenty_two"/>
+            <transition event="done.state.twenty_one" target="twenty_two"/>
         </state>
 
         <state id="twenty_two">
-            <transition event="twenty_two.done" target="thirty"/>
+            <transition event="done.state.twenty_two" target="thirty"/>
         </state>
 
     </state>
@@ -57,13 +57,13 @@
             <onentry>
                 <log expr="'Entering thirty_one'" />
             </onentry>
-            <transition event="thirty_one.done" target="forty"/>
+            <transition event="done.state.thirty_one" target="forty"/>
 
             <state id="thirty_one_child_one">
                 <onexit>
                     <log expr="'Exiting thirty_one_child_one'" />
                 </onexit>
-                <transition event="thirty_one_child_one.done"
+                <transition event="done.state.thirty_one_child_one"
                             target="thirty_one_child_two"/>
             </state>
 
@@ -89,7 +89,7 @@
                 <onexit>
                     <log expr="'Exiting thirty_two_child_one'" />
                 </onexit>
-                <transition event="thirty_two_child_one.done"
+                <transition event="done.state.thirty_two_child_one"
                             target="thirty_two_child_two"/>
             </state>
 
@@ -115,7 +115,7 @@
                 <onexit>
                     <log expr="'Exiting thirty_three_child_one'" />
                 </onexit>
-                <transition event="thirty_three_child_one.done"
+                <transition event="done.state.thirty_three_child_one"
                             target="thirty_three_child_two"/>
             </state>
 

Modified: commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-02.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-02.xml?rev=1584272&r1=1584271&r2=1584272&view=diff
==============================================================================
--- commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-02.xml (original)
+++ commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-02.xml Thu Apr  3 07:13:42 2014
@@ -40,7 +40,7 @@
         </transition>
 
         <!-- "regular" transition -->
-        <transition event="ten.done" target="twenty">
+        <transition event="done.state.ten" target="twenty">
             <assign name="foo" expr="foo + 1" />
             <log expr="'Foo is:' + foo" />
         </transition>

Modified: commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-03.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-03.xml?rev=1584272&r1=1584271&r2=1584272&view=diff
==============================================================================
--- commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-03.xml (original)
+++ commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-03.xml Thu Apr  3 07:13:42 2014
@@ -20,7 +20,7 @@
        initial="ten">
 
     <state id="ten">
-        <transition event="ten.done"
+        <transition event="done.state.ten"
          target="twenty_one_2 twenty_two_2 twenty_three_2" />
     </state>
 

Modified: commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-04.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-04.xml?rev=1584272&r1=1584271&r2=1584272&view=diff
==============================================================================
--- commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-04.xml (original)
+++ commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/transitions-04.xml Thu Apr  3 07:13:42 2014
@@ -20,7 +20,7 @@
        initial="ten">
 
     <state id="ten">
-        <transition event="ten.done"
+        <transition event="done.state.ten"
          target="twenty" />
     </state>