summaryrefslogtreecommitdiffstats
path: root/embedding/java/src/org/uscxml/tests/execContent/TestCustomExecContent.java
diff options
context:
space:
mode:
Diffstat (limited to 'embedding/java/src/org/uscxml/tests/execContent/TestCustomExecContent.java')
-rw-r--r--embedding/java/src/org/uscxml/tests/execContent/TestCustomExecContent.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/embedding/java/src/org/uscxml/tests/execContent/TestCustomExecContent.java b/embedding/java/src/org/uscxml/tests/execContent/TestCustomExecContent.java
index dd5e39a..92d7ed3 100644
--- a/embedding/java/src/org/uscxml/tests/execContent/TestCustomExecContent.java
+++ b/embedding/java/src/org/uscxml/tests/execContent/TestCustomExecContent.java
@@ -5,9 +5,9 @@ import org.uscxml.Event;
import org.uscxml.Factory;
import org.uscxml.Interpreter;
import org.uscxml.InterpreterException;
-import org.uscxml.WrappedExecutableContent;
+import org.uscxml.ExecutableContent;
-public class TestCustomExecContent extends WrappedExecutableContent {
+public class TestCustomExecContent extends ExecutableContent {
static int instanceId = 0;
public int id = 0;
@@ -43,7 +43,7 @@ public class TestCustomExecContent extends WrappedExecutableContent {
}
@Override
- public WrappedExecutableContent create(Interpreter interpreter) {
+ public ExecutableContent create(Interpreter interpreter) {
return new TestCustomExecContent();
}