public class RuleTraceListener extends Object implements TraceListener2
Constructor and Description |
---|
RuleTraceListener() |
Modifier and Type | Method and Description |
---|---|
void |
close()
Method called at the end of execution, that is, when the run-time execution ends
|
void |
endCurrentItem(Item currentItem)
Method that is called when an instruction has finished processing a new current item
and is ready to select a new current item or revert to the previous current item.
|
void |
endRuleSearch(Object rule,
Mode mode,
Item item)
Called at the end of a rule search
|
void |
enter(InstructionInfo instruction,
XPathContext context)
Method that is called when an instruction in the stylesheet gets processed.
|
void |
leave(InstructionInfo instruction)
Method that is called after processing an instruction of the stylesheet,
that is, after any child instructions have been processed.
|
void |
open(Controller controller)
Called at start
|
void |
setOutputDestination(Logger stream)
Set the PrintStream to which the output will be written.
|
void |
setSourceId(String sourceId) |
void |
setXslId(String xslId) |
void |
startCurrentItem(Item currentItem)
Method that is called by an instruction that changes the current item
in the source document: that is, xsl:for-each, xsl:apply-templates, xsl:for-each-group.
|
void |
startRuleSearch()
Method called when a search for a template rule is about to start
|
public void setXslId(String xslId)
public void setSourceId(String sourceId)
public void setOutputDestination(Logger stream)
setOutputDestination
in interface TraceListener
stream
- the PrintStream to be used for output. By default, the output is written
to System.err.XPathException
XMLStreamException
public void open(Controller controller)
open
in interface TraceListener
controller
- identifies the transformation controller, and provides the listener with
access to context and configuration informationpublic void startRuleSearch()
TraceListener2
startRuleSearch
in interface TraceListener2
public void endRuleSearch(Object rule, Mode mode, Item item)
endRuleSearch
in interface TraceListener2
rule
- the rule (or possible built-in ruleset) that has been selectedmode
- the mode in operationitem
- public void close()
TraceListener
close
in interface TraceListener
public void enter(InstructionInfo instruction, XPathContext context)
TraceListener
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)
TraceListener
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 currentItem)
TraceListener
startCurrentItem
in interface TraceListener
currentItem
- 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 currentItem)
TraceListener
endCurrentItem
in interface TraceListener
currentItem
- 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.Copyright (c) 2004-2014 Saxonica Limited. All rights reserved.