nu.xom.xslt

Class XSLTransform

public final class XSLTransform extends Object

Serves as an interface to a TrAX aware XSLT processor such as Xalan or Saxon. The following example shows how to apply an XSL Transformation to a XOM document and get the transformation result in the form of a XOM Nodes:

public static Nodes transform(Document in) 
   throws XSLException, ParsingException, IOException {
     Builder builder = new Builder();
     Document stylesheet = builder.build("mystylesheet.xsl");
     XSLTransform transform = new XSLTransform(stylesheet);
     return transform.transform(doc);
 } 

XOM relies on TrAX to perform the transformation. The javax.xml.transform.TransformerFactory Java system property determines which XSLT engine TrAX uses. Its value should be the fully qualified name of the implementation of the abstract javax.xml.transform.TransformerFactory class. Values of this property for popular XSLT processors include:

This property can be set in all the usual ways a Java system property can be set. TrAX picks from them in this order:

  1. The most recent value specified by invoking System.setProperty("javax.xml.transform.TransformerFactory", "classname")
  2. The value specified at the command line using the -Djavax.xml.transform.TransformerFactory=classname option to the java interpreter
  3. The class named in the lib/jaxp.properties properties file in the JRE directory, in a line like this one:
    javax.xml.transform.TransformerFactory=classname
  4. The class named in the META-INF/services/javax.xml.transform.TransformerFactory file in the JAR archives available to the runtime
  5. Finally, if all of the above options fail, a default implementation is chosen. In Sun's JDK 1.4.0 and 1.4.1, this is Xalan 2.2d10. In JDK 1.4.2, this is Xalan 2.4. In JDK 1.4.2_02, this is Xalan 2.4.1. In JDK 1.4.2_03, 1.5 beta 2, and 1.5 RC1 this is Xalan 2.5.2. In JDK 1.4.2_05, this is Xalan 2.4.1. (Yes, Sun appears to have reverted to 2.4.1 in 1.4.2_05.)

Version: 1.2d1

Author: Elliotte Rusty Harold

Constructor Summary
XSLTransform(Document stylesheet)

Creates a new XSLTransform by reading the stylesheet from the supplied document.

XSLTransform(Document stylesheet, NodeFactory factory)

Creates a new XSLTransform by reading the stylesheet from the supplied document.

Method Summary
voidsetParameter(String name, Object value)

Supply a parameter to transformations performed by this object.

voidsetParameter(String name, String namespace, Object value)

Supply a parameter to transformations performed by this object.

static DocumenttoDocument(Nodes nodes)

Builds a Document object from a Nodes object.

StringtoString()

Returns a string form of this XSLTransform, suitable for debugging.

Nodestransform(Document in)

Creates a new Nodes from the input Document by applying this object's stylesheet.

Nodestransform(Nodes in)

Creates a new Nodes object from the input Nodes object by applying this object's stylesheet.

Constructor Detail

XSLTransform

public XSLTransform(Document stylesheet)

Creates a new XSLTransform by reading the stylesheet from the supplied document.

Parameters: stylesheet document containing the stylesheet

Throws: XSLException when the supplied document is not syntactically correct XSLT

XSLTransform

public XSLTransform(Document stylesheet, NodeFactory factory)

Creates a new XSLTransform by reading the stylesheet from the supplied document. The supplied factory will be used to create all nodes in the result tree, so that a transform can create instances of subclasses of the standard XOM classes. Because an XSL transformation generates a list of nodes rather than a document, the factory's startMakingDocument and finishMakingDocument methods are not called.

Parameters: stylesheet document containing the stylesheet factory the factory used to build nodes in the result tree

Throws: XSLException when the supplied document is not syntactically correct XSLT

Method Detail

setParameter

public void setParameter(String name, Object value)

Supply a parameter to transformations performed by this object. The value is normally a Boolean, Double, or String. However, it may be another type if the underlying XSLT processor supports that type. Passing null for the value removes the parameter.

Parameters: name the name of the parameter value the value of the parameter

setParameter

public void setParameter(String name, String namespace, Object value)

Supply a parameter to transformations performed by this object. The value is normally a Boolean, Double, or String. However, it may be another type if the underlying XSLT processor supports that type. Passing null for the value removes the parameter.

Parameters: name the name of the parameter namespace the namespace URI of the parameter value the value of the parameter

toDocument

public static Document toDocument(Nodes nodes)

Builds a Document object from a Nodes object. This is useful when the stylesheet is known to produce a well-formed document with a single root element. That is, the Node returned contains only comments, processing instructions, and exactly one element. If the stylesheet produces anything else, this method throws XMLException.

Parameters: nodes the nodes to be placed in the new document

Returns: a document containing the nodes

Throws: XMLException if nodes does not contain exactly one element or if it contains any text nodes or attributes

toString

public String toString()

Returns a string form of this XSLTransform, suitable for debugging.

Returns: debugging string

transform

public Nodes transform(Document in)

Creates a new Nodes from the input Document by applying this object's stylesheet. The original Document is not changed.

Parameters: in document to transform

Returns: a Nodes containing the result of the transformation

Throws: XSLException if the transformation fails, normally due to an XSLT error

transform

public Nodes transform(Nodes in)

Creates a new Nodes object from the input Nodes object by applying this object's stylesheet. The original Nodes object is not changed.

Parameters: in document to transform

Returns: a Nodes containing the result of the transformation

Throws: XSLException if the transformation fails, normally due to an XSLT error

Copyright 2002-2006 Elliotte Rusty Harold
elharo@metalab.unc.edu