Class AbstractWorkflowStatusListener
- java.lang.Object
-
- de.uka.ipd.sdq.workflow.workbench.AbstractWorkflowStatusListener
-
- All Implemented Interfaces:
WorkflowStatusListener
public abstract class AbstractWorkflowStatusListener extends Object implements WorkflowStatusListener
Default implementation of a workflow status listener. This implementation provides default implementation of all notification methods with no operations. Allowing to override only those methods required by the plugin.
-
-
Constructor Summary
Constructors Constructor Description AbstractWorkflowStatusListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
notifyConfigurationValid()
Trigger the listener when the workflow configuration has been successfully validated.void
notifyCreated()
Trigger the listener when the workflow has been created incl.void
notifyFinished()
Trigger the listener when the workflow is finished.
-
-
-
Method Detail
-
notifyConfigurationValid
public void notifyConfigurationValid()
Description copied from interface:WorkflowStatusListener
Trigger the listener when the workflow configuration has been successfully validated.- Specified by:
notifyConfigurationValid
in interfaceWorkflowStatusListener
-
notifyCreated
public void notifyCreated()
Description copied from interface:WorkflowStatusListener
Trigger the listener when the workflow has been created incl. configuration.- Specified by:
notifyCreated
in interfaceWorkflowStatusListener
-
notifyFinished
public void notifyFinished()
Description copied from interface:WorkflowStatusListener
Trigger the listener when the workflow is finished.- Specified by:
notifyFinished
in interfaceWorkflowStatusListener
-
-