blob: c5cc14163c762171317ca5c85158160e1d946901 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package org.uscxml.gen;
/**
Generated from source:
file:///Users/sradomski/Documents/TK/Code/uscxml/test/w3c/jexl/test191.scxml
*/
import java.util.ArrayList;
import java.util.HashMap;
public abstract class TestStateChartBase extends StateChart {
public TestStateChartBase() {
transitions = new ArrayList<Transition>();
states = new ArrayList<State>();
stateNamesToIndex = new HashMap<String, Integer>();
/* TODO: initialize all members */
}
}
|