Package de.uka.ipd.sdq.workflow.jobs
Interface IBlackboardInteractingJob<BlackboardType extends Blackboard<?>>
-
- Type Parameters:
BlackboardType
- Type of the blackboard which is needed by this job
- All Superinterfaces:
IJob
- All Known Implementing Classes:
AbstractBlackboardInteractingJob
,AbstractExtendableJob
,AbstractWorkflowExtensionJob
,CheckEMFConstraintsJob
,ModelValidationJob
,ParallelBlackboardInteractingJob
,PerformOAWCheckValidation
,PrepareXTextPartitionJob
,QVTOTransformationJob
,SavePartitionToDiskJob
,SequentialBlackboardInteractingJob
,XTextGeneratorBlackboardJob
public interface IBlackboardInteractingJob<BlackboardType extends Blackboard<?>> extends IJob
Interface of a job which needs access to a certain type of blackboard to retrieve or store data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setBlackboard(BlackboardType blackboard)
Sets the blackboard of this job to the given blackboard.
-
-
-
Method Detail
-
setBlackboard
void setBlackboard(BlackboardType blackboard)
Sets the blackboard of this job to the given blackboard.- Parameters:
blackboard
- The blackboard to be used by this job
-
-