summaryrefslogtreecommitdiffstats
path: root/contrib/java/generated/org/uscxml/StateChartJava5Impl.java
blob: 3bf1bb20d010284d8854aadf1338e99a24a0f777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package org.uscxml;

/**
 * @author sradomski
 *
 * This is the base class inheriting the abstract StateChart class
 * It is supposed to realize the callbacks with the language features
 * found in Java5 only.
 */

public class StateChartJava5Impl extends StateChart {
	
	DataModel dataModel;
	
	@Override
	public boolean isTrue(String expression) {
		return dataModel.evalAsBool(expression);
	}

	@Override
	public void raiseDoneEvent(State state, DoneData doneData) {
		// TODO Auto-generated method stub
	}

	@Override
	public void execContentLog(String label, String expression) {
		// TODO Auto-generated method stub
	}

	@Override
	public void execContentRaise(String event) {
		// TODO Auto-generated method stub

	}

	@Override
	public void execContentSend(Send send) {
		// TODO Auto-generated method stub

	}

	@Override
	public void execContentForeachInit(Foreach foreach) {
		// TODO Auto-generated method stub

	}

	@Override
	public void execContentForeachNext(Foreach foreach) {
		// TODO Auto-generated method stub

	}

	@Override
	public void execContentForeachDone(Foreach foreach) {
		// TODO Auto-generated method stub

	}

	@Override
	public void execContentAssign(Assign assign) {
		// TODO Auto-generated method stub

	}

	@Override
	public void execContentInit(Data data) {
		// TODO Auto-generated method stub

	}

	@Override
	public void execContentCancel(String sendId, String sendIdExpr) {
		// TODO Auto-generated method stub

	}

	@Override
	public void execContentScript(String src, String content) {
		// TODO Auto-generated method stub

	}

	@Override
	public void execContentFinalize(Invoke invoker, Object event) {
		// TODO Auto-generated method stub

	}

}