public class TimingTraceListener extends java.lang.Object implements TraceListener
| Modifier and Type | Field and Description |
|---|---|
protected Configuration |
config |
| Constructor and Description |
|---|
TimingTraceListener() |
| Modifier and Type | Method and Description |
|---|---|
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
|
protected PreparedStylesheet |
getStyleSheet()
Prepare Stylesheet to render the analyzed XML data out.
|
protected java.io.InputStream |
getStylesheetInputStream()
Get an input stream containing the stylesheet used for formatting results
|
void |
leave(InstructionInfo instruction)
Called after an instruction of the stylesheet got processed
|
void |
open(Controller controller)
Called at start
|
void |
setOutputDestination(Logger stream)
Set the PrintStream to which the output will be written.
|
void |
startCurrentItem(Item item)
Called when an item becomes current
|
protected Configuration config
public void setOutputDestination(Logger stream)
setOutputDestination in interface TraceListenerstream - the PrintStream to be used for output. By default, the output is written
to System.err.public 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(InstructionInfo instruction, XPathContext context)
enter in interface TraceListenerinstruction - 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 TraceListenerinstruction - 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 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.protected PreparedStylesheet getStyleSheet() throws XPathException
XPathExceptionprotected java.io.InputStream getStylesheetInputStream()
Copyright (c) 2004-2020 Saxonica Limited. All rights reserved.