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
-
executeAction(MacroDebugActionEvent)
- Called when an action for a particular screen is being executed.
-
macroDebugStart(MacroDebugStartEvent)
- Called right before the macro begins its play logic.
-
macroDebugStop(MacroDebugStopEvent)
- Called immediately after the macro ends its play logic.
-
screensCompared(MacroRecoDebugEvent)
- Called when a new screen appears and the Macro's screen matching logic
is run.
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
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
macroDebugStart
public abstract void macroDebugStart(MacroDebugStartEvent e)
- Called right before the macro begins its play logic.
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