1 | package de.uka.ipd.sdq.codegen.simucontroller.workflow.jobs; |
2 | |
3 | import de.uka.ipd.sdq.simucomframework.model.SimuComModel; |
4 | import de.uka.ipd.sdq.workflow.launchconfig.extension.AbstractWorkflowExtensionJob; |
5 | import de.uka.ipd.sdq.workflow.mdsd.blackboard.MDSDBlackboard; |
6 | import de.uka.ipd.sdq.workflow.pcm.configurations.AbstractPCMWorkflowRunConfiguration; |
7 | |
8 | public abstract class AbstractSimuComExtensionJob extends AbstractWorkflowExtensionJob<MDSDBlackboard> { |
9 | |
10 | /** |
11 | * The configuration of the workflow. |
12 | */ |
13 | protected AbstractPCMWorkflowRunConfiguration configuration = null; |
14 | |
15 | public void setConfiguration(AbstractPCMWorkflowRunConfiguration configuration) { |
16 | this.configuration = configuration; |
17 | } |
18 | |
19 | private SimuComModel simuComModel = null; |
20 | |
21 | public SimuComModel getSimuComModel() { |
22 | return simuComModel; |
23 | } |
24 | |
25 | public void setSimuComModel(SimuComModel simuComModel) { |
26 | this.simuComModel = simuComModel; |
27 | } |
28 | |
29 | } |