|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.saxon.trace.TimedTraceListener
public class TimedTraceListener
A Simple trace listener that writes messages to System.err or to another designated PrintStream
Constructor Summary | |
---|---|
TimedTraceListener()
|
Method Summary | |
---|---|
void |
close()
Called at end |
void |
endCurrentItem(Item item)
Called after a node of the source tree got processed |
void |
enter(InstructionInfo instruction,
XPathContext context)
Called when an instruction in the stylesheet gets processed |
void |
leave(InstructionInfo instruction)
Called after an instruction of the stylesheet got processed |
void |
open()
Called at start |
void |
setOutputStream(PrintStream stream)
Set the PrintStream to which the output will be written. |
void |
startCurrentItem(Item item)
Called when an item becomes current |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TimedTraceListener()
Method Detail |
---|
public void setOutputStream(PrintStream stream)
stream
- the PrintStream to be used for output. By default, the output is written
to System.err.public void open()
open
in interface TraceListener
public void close()
close
in interface TraceListener
public void enter(InstructionInfo instruction, XPathContext context)
enter
in interface TraceListener
instruction
- 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.public void leave(InstructionInfo instruction)
leave
in interface TraceListener
instruction
- gives the same information that was supplied to the
enter method, though it is not necessarily the same object. Note that the
line number of the instruction is that of the start tag in the source stylesheet,
not the line number of the end tag.public void startCurrentItem(Item item)
startCurrentItem
in interface TraceListener
item
- 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 TraceListener
item
- 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.
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |