org.javasteps.event
Interface ProcessListener

All Known Implementing Classes:
ProcessListenerAdapter

public interface ProcessListener

The ProcessListener interface represents a listener for process execution events

Version:
1.1
Author:
Ran Kornfeld

Method Summary
 void actionStepFinished(ProcessEvent event)
          Invoked after an ActionStep finishes
 void actionStepStarted(ProcessEvent event)
          Invoked before an ActionStep starts
 void processFinished(ProcessEvent event)
          Invoked after the process finishes
 void processStarted(ProcessEvent event)
          Invoked before the process starts
 

Method Detail

processStarted

void processStarted(ProcessEvent event)
Invoked before the process starts

Parameters:
event - The process event instance

processFinished

void processFinished(ProcessEvent event)
Invoked after the process finishes

Parameters:
event - The process event instance

actionStepStarted

void actionStepStarted(ProcessEvent event)
Invoked before an ActionStep starts

Parameters:
event - The process event instance

actionStepFinished

void actionStepFinished(ProcessEvent event)
Invoked after an ActionStep finishes

Parameters:
event - The process event instance