All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.eNetwork.beans.HOD.event.MacroTraceEvent
java.lang.Object
|
+----java.util.EventObject
|
+----com.ibm.eNetwork.beans.HOD.event.HODEvent
|
+----com.ibm.eNetwork.beans.HOD.event.MacroTraceEvent
- public class MacroTraceEvent
- extends HODEvent
Event fired to MacroRuntimeListener.macroTraceEvent(). Fired if
the Macro bean processes a trace command during a macro play.
-
TRACE_HOD
- Trace data will be sent to the HOD trace facility.
-
TRACE_SYSOUT
- Trace data will be sent to the command line.
-
TRACE_USER
- Trace data will be fired to any registered listeners.
-
MacroTraceEvent(Macro, int, String)
- Constructs a working instance of a macro trace event.
-
getData()
- Returns the data text for the trace event.
-
getType()
- Returns the trace type for the trace event.
TRACE_HOD
public static final int TRACE_HOD
- Trace data will be sent to the HOD trace facility.
TRACE_USER
public static final int TRACE_USER
- Trace data will be fired to any registered listeners.
TRACE_SYSOUT
public static final int TRACE_SYSOUT
- Trace data will be sent to the command line.
MacroTraceEvent
public MacroTraceEvent(Macro macro,
int argType,
String argData)
- Constructs a working instance of a macro trace event.
- Parameters:
- macro - Macro bean that is the source of the event
- argType - trace type for the event
- argData - trace data text for the event
getData
public String getData()
- Returns the data text for the trace event.
- Returns:
- trace data string
getType
public int getType()
- Returns the trace type for the trace event.
- Returns:
- trace type
All Packages Class Hierarchy This Package Previous Next Index