public class TraceEventMulticaster extends java.lang.Object implements TraceListener
| Modifier and Type | Field and Description |
|---|---|
protected TraceListener |
a |
protected TraceListener |
b |
| Modifier | Constructor and Description |
|---|---|
protected |
TraceEventMulticaster(TraceListener a,
TraceListener b)
Creates an event multicaster instance which chains listener-a
with listener-b.
|
| Modifier and Type | Method and Description |
|---|---|
static TraceListener |
add(TraceListener a,
TraceListener b)
Adds trace-listener-a with trace-listener-b and
returns the resulting multicast listener.
|
protected static TraceListener |
addInternal(TraceListener a,
TraceListener b)
Returns the resulting multicast listener from adding listener-a
and listener-b together.
|
void |
close()
Called at end
|
void |
endCurrentItem(Item item)
Called when an item ceases to be the current item
|
void |
endRuleSearch(java.lang.Object rule,
SimpleMode mode,
Item item)
Called at the end of a rule search
|
void |
enter(Traceable element,
java.util.Map<java.lang.String,java.lang.Object> properties,
XPathContext context)
Called when an element of the stylesheet gets processed
|
void |
leave(Traceable element)
Called after an element of the stylesheet got processed
|
void |
open(Controller controller)
Called at start
|
protected TraceListener |
remove(TraceListener oldl)
Removes a listener from this multicaster and returns the
resulting multicast listener.
|
static TraceListener |
remove(TraceListener l,
TraceListener oldl)
Removes the old trace-listener from trace-listener-l and
returns the resulting multicast listener.
|
protected static TraceListener |
removeInternal(TraceListener l,
TraceListener oldl)
Returns the resulting multicast listener after removing the
old listener from listener-l.
|
void |
setOutputDestination(Logger stream)
Method called to supply the destination for output
|
void |
startCurrentItem(Item item)
Called when an item becomes current
|
void |
startRuleSearch()
Called at the start of a rule search
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitendRuleSearchprotected final TraceListener a
protected final TraceListener b
protected TraceEventMulticaster(TraceListener a, TraceListener b)
a - listener-ab - listener-bpublic void setOutputDestination(Logger stream)
TraceListenersetOutputDestination in interface TraceListenerstream - a Logger to which any output produced by the TraceListener should be writtenprotected TraceListener remove(TraceListener oldl)
oldl - the listener to be removedpublic void open(Controller controller)
open in interface TraceListenercontroller - identifies the transformation controller, and provides the listener with
access to context and configuration informationpublic void close()
close in interface TraceListenerpublic void enter(Traceable element, java.util.Map<java.lang.String,java.lang.Object> properties, XPathContext context)
enter in interface TraceListenerelement - gives information about the instruction being
executed, and about the context in which it is executed. This object is mutable,
so if information from the InstructionInfo is to be retained, it must be copied.properties - extra information about the instruction to be included in the tracecontext - the XPath evaluation contextpublic void leave(Traceable element)
leave in interface TraceListenerelement - public void startCurrentItem(Item item)
startCurrentItem in interface TraceListeneritem - the new current item. Item objects are not mutable; it is safe to retain
a reference to the Item for later use.public void endCurrentItem(Item item)
endCurrentItem in interface TraceListeneritem - the item that was current, whose processing is now complete. This will represent
the same underlying item as the corresponding startCurrentItem() call, though it will
not necessarily be the same actual object.public void startRuleSearch()
startRuleSearch in interface TraceListenerpublic void endRuleSearch(java.lang.Object rule,
SimpleMode mode,
Item item)
rule - the rule (or possible built-in ruleset) that has been selectedmode - item - public static TraceListener add(TraceListener a, TraceListener b)
a - trace-listener-ab - trace-listener-bpublic static TraceListener remove(TraceListener l, TraceListener oldl)
l - trace-listener-loldl - the trace-listener being removedprotected static TraceListener addInternal(TraceListener a, TraceListener b)
a - event listener-ab - event listener-bprotected static TraceListener removeInternal(TraceListener l, TraceListener oldl)
l - the listener being removed fromoldl - the listener being removedCopyright (c) 2004-2020 Saxonica Limited.