|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use OutputProperties | |
---|---|
org.apache.xalan.lib | Extension elements and functions shipped with Xalan-Java, including EXSLT functions. We are adding extensions to this package. |
org.apache.xalan.templates | Implements the Templates interface,
and defines a set of classes that represent an XSLT stylesheet.
StylesheetRoot implements the Templates interface, and
extends StylesheetComposed ,
which is a Stylesheet composed of itself
and its included Stylesheet objects. |
org.apache.xalan.transformer | In charge of run-time transformations and the production of result trees.
TransformerImpl implements the
Transformer interface, and is the core representation
of the transformation execution.
For each node in the XML source, TransformerImpl uses the StylesheetRoot and underlying XSLT schema to determine which
template to apply: one of the templates in the StylesheetRoot, a default template rule as specified in the XSLT spec, or
none.
The Transformer works with SerializationHandler to
forward the SAX-like events produced by the
transformation to the appropriate output ContentHandler.
To the degree possible, the parsing of the XML source and application of the Templates object to that source are performed
concurrently in separate threads. |
Uses of OutputProperties in org.apache.xalan.lib |
---|
Methods in org.apache.xalan.lib with parameters of type OutputProperties | |
---|---|
SerializationHandler |
Redirect.createSerializationHandler(TransformerImpl transformer,
java.io.FileOutputStream ostream,
java.io.File file,
OutputProperties format)
A class that extends this one could over-ride this public method and receive a callback for the creation of the serializer used in the redirection. |
Uses of OutputProperties in org.apache.xalan.templates |
---|
Methods in org.apache.xalan.templates that return OutputProperties | |
---|---|
OutputProperties |
StylesheetRoot.getOutputComposed()
Get the combined "xsl:output" property with the properties combined from the included stylesheets. |
OutputProperties |
Stylesheet.getOutput(int i)
Get an "xsl:output" property. |
Methods in org.apache.xalan.templates with parameters of type OutputProperties | |
---|---|
void |
OutputProperties.copyFrom(OutputProperties opsrc)
Copy the keys and values from the source to this object. |
void |
Stylesheet.setOutput(OutputProperties v)
Set the "xsl:output" property. |
Uses of OutputProperties in org.apache.xalan.transformer |
---|
Methods in org.apache.xalan.transformer that return OutputProperties | |
---|---|
OutputProperties |
TransformerImpl.getOutputFormat()
Get the output properties used for the transformation. |
Methods in org.apache.xalan.transformer with parameters of type OutputProperties | |
---|---|
SerializationHandler |
TransformerImpl.createSerializationHandler(javax.xml.transform.Result outputTarget,
OutputProperties format)
Create a ContentHandler from a Result object and an OutputProperties. |
void |
TransformerImpl.setOutputFormat(OutputProperties oformat)
Set the output properties for the transformation. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |