org.apache.tools.ant.taskdefs

Class XSLTProcess.TraceConfiguration

public final class XSLTProcess.TraceConfiguration extends Object

Configuration for Xalan2 traces.

Since: Ant 1.8.0

Method Summary
booleangetElements()
True if the listener is to print events that occur as each node is 'executed' in the stylesheet.
booleangetExtension()
True if the listener is to print information after each extension event.
booleangetGeneration()
True if the listener is to print information after each result-tree generation event.
OutputStreamgetOutputStream()
The stream to write traces to.
booleangetSelection()
True if the listener is to print information after each selection event.
booleangetTemplates()
True if the listener is to print an event whenever a template is invoked.
voidsetElements(boolean b)
Set to true if the listener is to print events that occur as each node is 'executed' in the stylesheet.
voidsetExtension(boolean b)
Set to true if the listener is to print information after each extension event.
voidsetGeneration(boolean b)
Set to true if the listener is to print information after each result-tree generation event.
voidsetSelection(boolean b)
Set to true if the listener is to print information after each selection event.
voidsetTemplates(boolean b)
Set to true if the listener is to print an event whenever a template is invoked.

Method Detail

getElements

public boolean getElements()
True if the listener is to print events that occur as each node is 'executed' in the stylesheet.

getExtension

public boolean getExtension()
True if the listener is to print information after each extension event.

getGeneration

public boolean getGeneration()
True if the listener is to print information after each result-tree generation event.

getOutputStream

public OutputStream getOutputStream()
The stream to write traces to.

getSelection

public boolean getSelection()
True if the listener is to print information after each selection event.

getTemplates

public boolean getTemplates()
True if the listener is to print an event whenever a template is invoked.

setElements

public void setElements(boolean b)
Set to true if the listener is to print events that occur as each node is 'executed' in the stylesheet.

setExtension

public void setExtension(boolean b)
Set to true if the listener is to print information after each extension event.

setGeneration

public void setGeneration(boolean b)
Set to true if the listener is to print information after each result-tree generation event.

setSelection

public void setSelection(boolean b)
Set to true if the listener is to print information after each selection event.

setTemplates

public void setTemplates(boolean b)
Set to true if the listener is to print an event whenever a template is invoked.