XsltTransformer
represents a compiled and loaded stylesheet ready for execution. The XsltTransformer
holds details of the dynamic evaluation context for the stylesheet. An XsltTransformer
must not be used concurrently in multiple threads. It is safe, however, to reuse the object within a single thread to run the same stylesheet several times. Running the stylesheet does not change the context that has been established.
An XsltTransformer
is always constructed by running the Load
method of an {@link XsltExecutable}.
An XsltTransformer
is itself a Destination
. This means it is possible to use one XsltTransformer
as the destination to receive the results of another transformation, this providing a simple way for transformations to be chained into a pipeline.
|
|
|
|