org.javasteps.event
Class ProcessListenerAdapter

java.lang.Object
  extended by org.javasteps.event.ProcessListenerAdapter
All Implemented Interfaces:
ProcessListener

public abstract class ProcessListenerAdapter
extends Object
implements ProcessListener

The ProcessListenerAdapter class implements an empty ProcessListener. This class is used for convenience, needed methods should be overridden.

Version:
1.1
Author:
Ran Kornfeld

Constructor Summary
ProcessListenerAdapter()
           
 
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
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ProcessListenerAdapter

public ProcessListenerAdapter()
Method Detail

processStarted

public void processStarted(ProcessEvent event)
Description copied from interface: ProcessListener
Invoked before the process starts

Specified by:
processStarted in interface ProcessListener
Parameters:
event - The process event instance
See Also:
ProcessListener.processStarted(org.javasteps.event.ProcessEvent)

processFinished

public void processFinished(ProcessEvent event)
Description copied from interface: ProcessListener
Invoked after the process finishes

Specified by:
processFinished in interface ProcessListener
Parameters:
event - The process event instance
See Also:
ProcessListener.processFinished(org.javasteps.event.ProcessEvent)

actionStepStarted

public void actionStepStarted(ProcessEvent event)
Description copied from interface: ProcessListener
Invoked before an ActionStep starts

Specified by:
actionStepStarted in interface ProcessListener
Parameters:
event - The process event instance
See Also:
ProcessListener.actionStepStarted(org.javasteps.event.ProcessEvent)

actionStepFinished

public void actionStepFinished(ProcessEvent event)
Description copied from interface: ProcessListener
Invoked after an ActionStep finishes

Specified by:
actionStepFinished in interface ProcessListener
Parameters:
event - The process event instance
See Also:
ProcessListener.actionStepFinished(org.javasteps.event.ProcessEvent)