Author: rahul
Date: Thu Sep 21 13:40:24 2006
New Revision: 448670

URL: http://svn.apache.org/viewvc?view=rev&rev=448670
Log:
Add missing props.

Modified:
    
jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/transitions-02.xml
   (contents, props changed)

Modified: 
jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/transitions-02.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/transitions-02.xml?view=diff&rev=448670&r1=448669&r2=448670
==============================================================================
--- 
jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/transitions-02.xml
 (original)
+++ 
jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/transitions-02.xml
 Thu Sep 21 13:40:24 2006
@@ -1,51 +1,51 @@
-<?xml version="1.0"?>

-<!--

-   Copyright 2006 The Apache Software Foundation

-

-   Licensed under the Apache License, Version 2.0 (the "License");

-   you may not use this file except in compliance with the License.

-   You may obtain a copy of the License at

-

-       http://www.apache.org/licenses/LICENSE-2.0

-

-   Unless required by applicable law or agreed to in writing, software

-   distributed under the License is distributed on an "AS IS" BASIS,

-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

-   See the License for the specific language governing permissions and

-   limitations under the License.

--->

-<scxml xmlns="http://www.w3.org/2005/07/scxml";

-       version="1.0"

-       initialstate="ten">

-

-    <state id="ten">

-

-        <onentry>

-            <var name="foo" expr="1" />

-            <log expr="'Foo is:' + foo" />

-        </onentry>

-

-        <!-- stay transition -->

-        <transition event="ten.stay">

-            <assign name="foo" expr="foo + 1" />

-            <log expr="'Foo is:' + foo" />

-        </transition>

-

-        <!-- self transition -->

-        <transition event="ten.self" target="ten">

-            <assign name="foo" expr="foo + 1" />

-            <log expr="'Foo is:' + foo" />

-        </transition>

-

-        <!-- "regular" transition -->

-        <transition event="ten.done" target="twenty">

-            <assign name="foo" expr="foo + 1" />

-            <log expr="'Foo is:' + foo" />

-        </transition>

-

-    </state>

-

-    <state id="twenty" final="true" />

-

-</scxml>

-

+<?xml version="1.0"?>
+<!--
+   Copyright 2006 The Apache Software Foundation
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+<scxml xmlns="http://www.w3.org/2005/07/scxml";
+       version="1.0"
+       initialstate="ten">
+
+    <state id="ten">
+
+        <onentry>
+            <var name="foo" expr="1" />
+            <log expr="'Foo is:' + foo" />
+        </onentry>
+
+        <!-- stay transition -->
+        <transition event="ten.stay">
+            <assign name="foo" expr="foo + 1" />
+            <log expr="'Foo is:' + foo" />
+        </transition>
+
+        <!-- self transition -->
+        <transition event="ten.self" target="ten">
+            <assign name="foo" expr="foo + 1" />
+            <log expr="'Foo is:' + foo" />
+        </transition>
+
+        <!-- "regular" transition -->
+        <transition event="ten.done" target="twenty">
+            <assign name="foo" expr="foo + 1" />
+            <log expr="'Foo is:' + foo" />
+        </transition>
+
+    </state>
+
+    <state id="twenty" final="true" />
+
+</scxml>
+

Propchange: 
jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/transitions-02.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
jakarta/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml/transitions-02.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to