summaryrefslogtreecommitdiffstats
path: root/test/bindings/java/org/uscxml/examples/DataModelExample.java
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-10-25 11:59:18 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-10-25 11:59:18 (GMT)
commit954a1eb75f2abc81da1e09701d700674f0baddfb (patch)
tree873eb6412e958ecd53214ddbd6a3e17465da5100 /test/bindings/java/org/uscxml/examples/DataModelExample.java
parent1a1513c6497e8818eb2a92a8fbf77d4c60bc911e (diff)
downloaduscxml-954a1eb75f2abc81da1e09701d700674f0baddfb.zip
uscxml-954a1eb75f2abc81da1e09701d700674f0baddfb.tar.gz
uscxml-954a1eb75f2abc81da1e09701d700674f0baddfb.tar.bz2
Worked on PROMELA transformation
Diffstat (limited to 'test/bindings/java/org/uscxml/examples/DataModelExample.java')
-rw-r--r--test/bindings/java/org/uscxml/examples/DataModelExample.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bindings/java/org/uscxml/examples/DataModelExample.java b/test/bindings/java/org/uscxml/examples/DataModelExample.java
index e6ad619..bba64eb 100644
--- a/test/bindings/java/org/uscxml/examples/DataModelExample.java
+++ b/test/bindings/java/org/uscxml/examples/DataModelExample.java
@@ -7,7 +7,7 @@ import org.uscxml.Factory;
import org.uscxml.Interpreter;
import org.uscxml.InterpreterException;
import org.uscxml.InterpreterState;
-import org.uscxml.dm.jexl.JEXLDataModel;
+import org.uscxml.dm.jexl.JexlDataModel;
import org.uscxml.helper.TestMonitor;
public class DataModelExample {
@@ -20,7 +20,7 @@ public class DataModelExample {
System.load(uSCXMLLibPath);
- JEXLDataModel jdm = new JEXLDataModel();
+ JexlDataModel jdm = new JexlDataModel();
Factory.getInstance().registerDataModel(jdm);;
TestMonitor tm = new TestMonitor();