All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.ibm.eNetwork.beans.HOD.event.MacroDebugListener

public interface MacroDebugListener
extends EventListener
Objects should implement this interface if they want to debug a macro's play in the Macro bean. This relates to both screen matching results and action execution. See each event class for details


Method Index

 o executeAction(MacroDebugActionEvent)
Called when an action for a particular screen is being executed.
 o macroDebugStart(MacroDebugStartEvent)
Called right before the macro begins its play logic.
 o macroDebugStop(MacroDebugStopEvent)
Called immediately after the macro ends its play logic.
 o screensCompared(MacroRecoDebugEvent)
Called when a new screen appears and the Macro's screen matching logic is run.

Methods

 o executeAction
 public abstract void executeAction(MacroDebugActionEvent e)
Called when an action for a particular screen is being executed.

Parameters:
e - MacroDebugActionEvent object that contains the action details
 o screensCompared
 public abstract void screensCompared(MacroRecoDebugEvent e)
Called when a new screen appears and the Macro's screen matching logic is run. Contains pass/fail results for all the screens in the current macro.

Parameters:
e - MacroRecoDebugEvent object that contains the results
 o macroDebugStart
 public abstract void macroDebugStart(MacroDebugStartEvent e)
Called right before the macro begins its play logic.

 o macroDebugStop
 public abstract void macroDebugStop(MacroDebugStopEvent e)
Called immediately after the macro ends its play logic.


All Packages  Class Hierarchy  This Package  Previous  Next  Index