Package com.icl.saxon.trace
Interface TraceListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
SaxonEventMulticaster
,SimpleTraceListener
To get trace events, an application can add instances of
this interface to a StyleSheetInstance
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Called at endvoid
Called when a node in the stylesheet gets processedvoid
enterSource
(NodeHandler handler, Context context) Called when a node of the source tree gets processedvoid
Called after an element of the stylesheet got processedvoid
leaveSource
(NodeHandler handler, Context context) Called after a node of the source tree got processedvoid
open()
Called at startvoid
Called for all top level elements
-
Method Details
-
open
void open()Called at start -
close
void close()Called at end -
toplevel
Called for all top level elements -
enterSource
Called when a node of the source tree gets processed -
leaveSource
Called after a node of the source tree got processed -
enter
Called when a node in the stylesheet gets processed -
leave
Called after an element of the stylesheet got processed
-