TPTP 4.2.0 Testing Tools Project
Public API Specification

org.eclipse.hyades.execution.harness
Interface IDataProcessorObservable.Observer

All Known Implementing Classes:
TestExecutionHarnessExecutorStub
Enclosing interface:
IDataProcessorObservable

public static interface IDataProcessorObservable.Observer

Observer nested interface, used as the callback for when observed events take place and notification is sent out, used in conjunction with the add and remove observer methods

See Also:
IDataProcessorObservable.addObserver(IDataProcessorObservable.Observer), IDataProcessorObservable.removeObserver(IDataProcessorObservable.Observer)

Method Summary
 void clean(IDataProcessorObservable context)
          Notification that the observed cleaned up their state
 void start(IDataProcessorObservable context)
          Notification that the observed started its function
 void stop(IDataProcessorObservable context)
          Notification that the observed stopped its function
 

Method Detail

clean

public void clean(IDataProcessorObservable context)
Notification that the observed cleaned up their state

Parameters:
context - the data processor that is cleaning itself

start

public void start(IDataProcessorObservable context)
Notification that the observed started its function

Parameters:
context - the data processor that is starting up

stop

public void stop(IDataProcessorObservable context)
Notification that the observed stopped its function

Parameters:
context - the data processor that has stopped its function, occurs before the clean event, but after the start event

TPTP 4.2.0 Testing Tools Project
Public API Specification