Prechádzať zdrojové kódy

#473 : pass FSA to concrete IExecutionFlowGenerator

Johannes Dicks 9 rokov pred
rodič
commit
80674c0425

+ 1 - 1
plugins/org.yakindu.sct.generator.core/src/org/yakindu/sct/generator/core/impl/AbstractSExecModelGenerator.java

@@ -68,7 +68,7 @@ public abstract class AbstractSExecModelGenerator extends AbstractSGraphModelGen
 	protected void runGenerator(Statechart statechart, GeneratorEntry entry) {
 		if (this instanceof IExecutionFlowGenerator) {
 			IExecutionFlowGenerator flowGenerator = (IExecutionFlowGenerator) this;
-			flowGenerator.generate(createExecutionFlow(statechart, entry), entry, null);
+			flowGenerator.generate(createExecutionFlow(statechart, entry), entry, sctFsa.getIFileSystemAccess());
 		}
 		super.runGenerator(statechart, entry);
 	}