private final FlowChartManager flowChartManager;
private final SortedMap<Integer,FlowChartInstance> flowChartInstances;
public Engine() throws MaltChainedException {
startTime = System.currentTimeMillis();
flowChartManager = new FlowChartManager();
flowChartManager.getFlowChartSystem().load(getClass().getResource("/appdata/flow/flowchartsystem.xml"));
flowChartManager.getFlowChartSystem().load(PluginLoader.instance());
flowChartManager.load(getClass().getResource("/appdata/flow/flowcharts.xml"));
flowChartManager.load(PluginLoader.instance());
flowChartInstances = new TreeMap<Integer,FlowChartInstance>();