summaryrefslogtreecommitdiffstats
path: root/test/bindings/java/org/uscxml/apache/commons/scxml2
diff options
context:
space:
mode:
Diffstat (limited to 'test/bindings/java/org/uscxml/apache/commons/scxml2')
-rw-r--r--test/bindings/java/org/uscxml/apache/commons/scxml2/Context.java7
-rw-r--r--test/bindings/java/org/uscxml/apache/commons/scxml2/Evaluator.java7
-rw-r--r--test/bindings/java/org/uscxml/apache/commons/scxml2/JexlEvaluator.java19
-rw-r--r--test/bindings/java/org/uscxml/apache/commons/scxml2/SCXML.java8
-rw-r--r--test/bindings/java/org/uscxml/apache/commons/scxml2/SCXMLExecutor.java49
-rw-r--r--test/bindings/java/org/uscxml/apache/commons/scxml2/SCXMLReader.java13
-rw-r--r--test/bindings/java/org/uscxml/apache/commons/scxml2/SimpleErrorReporter.java5
7 files changed, 0 insertions, 108 deletions
diff --git a/test/bindings/java/org/uscxml/apache/commons/scxml2/Context.java b/test/bindings/java/org/uscxml/apache/commons/scxml2/Context.java
deleted file mode 100644
index a0208c9..0000000
--- a/test/bindings/java/org/uscxml/apache/commons/scxml2/Context.java
+++ /dev/null
@@ -1,7 +0,0 @@
-package org.uscxml.apache.commons.scxml2;
-
-import org.uscxml.DataModel;
-
-public class Context {
- public DataModel dm = null;
-}
diff --git a/test/bindings/java/org/uscxml/apache/commons/scxml2/Evaluator.java b/test/bindings/java/org/uscxml/apache/commons/scxml2/Evaluator.java
deleted file mode 100644
index 5bd5642..0000000
--- a/test/bindings/java/org/uscxml/apache/commons/scxml2/Evaluator.java
+++ /dev/null
@@ -1,7 +0,0 @@
-package org.uscxml.apache.commons.scxml2;
-
-public abstract class Evaluator {
-
- public abstract Context newContext(Object object);
-
-}
diff --git a/test/bindings/java/org/uscxml/apache/commons/scxml2/JexlEvaluator.java b/test/bindings/java/org/uscxml/apache/commons/scxml2/JexlEvaluator.java
deleted file mode 100644
index 127bed3..0000000
--- a/test/bindings/java/org/uscxml/apache/commons/scxml2/JexlEvaluator.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package org.uscxml.apache.commons.scxml2;
-
-import org.uscxml.Factory;
-import org.uscxml.dm.jexl.JexlDataModel;
-
-public class JexlEvaluator extends Evaluator {
-
- public JexlEvaluator() {
-
- }
-
- @Override
- public Context newContext(Object object) {
- // TODO Auto-generated method stub
- Context ctx = new Context();
- ctx.dm = new JexlDataModel();
- return ctx;
- }
-}
diff --git a/test/bindings/java/org/uscxml/apache/commons/scxml2/SCXML.java b/test/bindings/java/org/uscxml/apache/commons/scxml2/SCXML.java
deleted file mode 100644
index 67e5b1f..0000000
--- a/test/bindings/java/org/uscxml/apache/commons/scxml2/SCXML.java
+++ /dev/null
@@ -1,8 +0,0 @@
-package org.uscxml.apache.commons.scxml2;
-
-import java.net.URL;
-
-public class SCXML {
- public URL url = null;
-
-}
diff --git a/test/bindings/java/org/uscxml/apache/commons/scxml2/SCXMLExecutor.java b/test/bindings/java/org/uscxml/apache/commons/scxml2/SCXMLExecutor.java
deleted file mode 100644
index 704e897..0000000
--- a/test/bindings/java/org/uscxml/apache/commons/scxml2/SCXMLExecutor.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package org.uscxml.apache.commons.scxml2;
-
-import java.net.URL;
-
-import org.uscxml.ActionLanguage;
-import org.uscxml.Factory;
-import org.uscxml.Interpreter;
-import org.uscxml.InterpreterException;
-import org.uscxml.InterpreterState;
-import org.uscxml.helper.TestMonitor;
-
-public class SCXMLExecutor {
-
- public Interpreter interpreter = null;
- public URL sourceURL = null;
- public ActionLanguage al = new ActionLanguage();
-
- public SCXMLExecutor(Evaluator evaluator, Object object, SimpleErrorReporter simpleErrorReporter) {
- // TODO Auto-generated constructor stub
- }
-
- public void setStateMachine(SCXML scxml) {
- sourceURL = scxml.url;
- }
-
- public void setRootContext(Context rootContext) {
- al.setDataModel(rootContext.dm);
- }
-
- public void go() {
- try {
- interpreter = Interpreter.fromURL(sourceURL.toString());
- interpreter.setActionLanguage(al);
-
- TestMonitor tm = new TestMonitor();
- interpreter.addMonitor(tm);
-
- InterpreterState state = InterpreterState.USCXML_UNDEF;
- while(state != InterpreterState.USCXML_FINISHED) {
- interpreter.step();
- }
-
- } catch (InterpreterException e) {
- e.printStackTrace();
- }
-
- }
-
-}
diff --git a/test/bindings/java/org/uscxml/apache/commons/scxml2/SCXMLReader.java b/test/bindings/java/org/uscxml/apache/commons/scxml2/SCXMLReader.java
deleted file mode 100644
index 45c2a54..0000000
--- a/test/bindings/java/org/uscxml/apache/commons/scxml2/SCXMLReader.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package org.uscxml.apache.commons.scxml2;
-
-import java.net.URL;
-
-public class SCXMLReader {
-
- public static SCXML read(URL scxml) {
- SCXML foo = new SCXML();
- foo.url = scxml;
- return foo;
- }
-
-}
diff --git a/test/bindings/java/org/uscxml/apache/commons/scxml2/SimpleErrorReporter.java b/test/bindings/java/org/uscxml/apache/commons/scxml2/SimpleErrorReporter.java
deleted file mode 100644
index 06187f8..0000000
--- a/test/bindings/java/org/uscxml/apache/commons/scxml2/SimpleErrorReporter.java
+++ /dev/null
@@ -1,5 +0,0 @@
-package org.uscxml.apache.commons.scxml2;
-
-public class SimpleErrorReporter {
-
-}