Class IdentityTransformer

  • Direct Known Subclasses:
    AbstractTransformerImpl

    public class IdentityTransformer
    extends Transformer
    Saxon implementation of the JAXP IdentityTransformer. This is used mainly for serializing various kinds of source under the control of serialization parameters.
    • Constructor Detail

      • IdentityTransformer

        protected IdentityTransformer​(Configuration config)
    • Method Detail

      • setURIResolver

        public void setURIResolver​(URIResolver resolver)
        Set an object that will be used to resolve URIs used in document().

        If the resolver argument is null, the URIResolver value will be cleared and the transformer will no longer have a resolver.

        Specified by:
        setURIResolver in class Transformer
        Parameters:
        resolver - An object that implements the URIResolver interface, or null.
      • getURIResolver

        public URIResolver getURIResolver()
        Get an object that will be used to resolve URIs used in document().
        Specified by:
        getURIResolver in class Transformer
        Returns:
        An object that implements the URIResolver interface, or null.
      • getErrorListener

        public ErrorListener getErrorListener()
        Get the error event handler in effect for the transformation. Implementations must provide a default error listener.
        Specified by:
        getErrorListener in class Transformer
        Returns:
        The current error listener, which should never be null. If no error listener has been supplied then a default one (whose behavior is completely undefined) is returned.
      • setOutputProperties

        public void setOutputProperties​(Properties properties)
        Set the output properties for the transformation. These properties will override properties set in the Templates with xsl:output.

        If argument to this function is null, any properties previously set are removed, and the value will revert to the value defined in the templates object.

        Pass a qualified property key name as a two-part string, the namespace URI enclosed in curly braces ({}), followed by the local name. If the name has a null URL, the String only contain the local name. An application can safely check for a non-null URI by testing to see if the first character of the name is a '{' character.

        For example, if a URI and local name were obtained from an element defined with <xyz:foo xmlns:xyz="http://xyz.foo.com/yada/baz.html"/>, then the qualified name would be "{http://xyz.foo.com/yada/baz.html}foo". Note that no prefix is used.

        An IllegalArgumentException is thrown if any of the argument keys are not recognized and are not namespace qualified.

        As well as the properties defined in the JAXP OutputKeys class, Saxon defines an additional set of properties in SaxonOutputKeys. These fall into two categories: Constants representing serialization properties defined in XSLT 2.0 (which are not yet supported by JAXP), and constants supporting Saxon extensions to the set of serialization

        properties.
        Specified by:
        setOutputProperties in class Transformer
        Parameters:
        properties - A set of output properties that will be used to override any of the same properties in affect for the transformation.
        Throws:
        IllegalArgumentException - When keys are not recognized and are not namespace qualified.
        See Also:
        OutputKeys, Properties
      • getOutputProperties

        public Properties getOutputProperties()
        Get the output properties for the transformation.

        As well as the properties defined in the JAXP OutputKeys class, Saxon defines an additional set of properties in SaxonOutputKeys. These fall into two categories: Constants representing serialization properties defined in XSLT 2.0 (which are not yet supported by JAXP), and constants supporting Saxon extensions to the set of serialization properties.

        Specified by:
        getOutputProperties in class Transformer
        Returns:
        the output properties being used for the transformation, including properties defined in the stylesheet for the unnamed output format
        See Also:
        SaxonOutputKeys
      • getStylesheetOutputProperties

        protected Properties getStylesheetOutputProperties()
        Get the output properties defined in the stylesheet. For an identity transformer this is an empty set, but the method is overridden in subclasses.
        Returns:
        the serialization properties defined in the stylesheet, if any.
      • getLocalOutputProperties

        protected Properties getLocalOutputProperties()
        Get the local output properties held in this Transformer object, that is the properties explicitly requested using setOutputProperty() or setOutputProperties()
        Returns:
        the local output properties
      • setOutputProperty

        public void setOutputProperty​(String name,
                                      String value)
                               throws IllegalArgumentException
        Set an output property that will be in effect for the transformation.

        Pass a qualified property name as a two-part string, the namespace URI enclosed in curly braces ({}), followed by the local name. If the name has a null URL, the String only contain the local name. An application can safely check for a non-null URI by testing to see if the first character of the name is a '{' character.

        For example, if a URI and local name were obtained from an element defined with <xyz:foo xmlns:xyz="http://xyz.foo.com/yada/baz.html"/>, then the qualified name would be "{http://xyz.foo.com/yada/baz.html}foo". Note that no prefix is used.

        The Properties object that was passed to setOutputProperties(java.util.Properties) won't be effected by calling this method.

        Specified by:
        setOutputProperty in class Transformer
        Parameters:
        name - A non-null String that specifies an output property name, which may be namespace qualified.
        value - The non-null string value of the output property.
        Throws:
        IllegalArgumentException - If the property is not supported, and is not qualified with a namespace.
        See Also:
        OutputKeys
      • setParameter

        public void setParameter​(String name,
                                 Object value)
        Add a parameter for the transformation.

        Pass a qualified name as a two-part string, the namespace URI enclosed in curly braces ({}), followed by the local name. If the name has a null URL, the String only contain the local name. An application can safely check for a non-null URI by testing to see if the first character of the name is a '{' character.

        For example, if a URI and local name were obtained from an element defined with <xyz:foo xmlns:xyz="http://xyz.foo.com/yada/baz.html"/>, then the qualified name would be "{http://xyz.foo.com/yada/baz.html}foo". Note that no prefix is used.

        Specified by:
        setParameter in class Transformer
        Parameters:
        name - The name of the parameter, which may begin with a namespace URI in curly braces ({}).
        value - The value object. This can be any valid Java object. It is up to the processor to provide the proper object coersion or to simply pass the object on for use in an extension.
        Throws:
        NullPointerException - If value is null.
      • getParameter

        public Object getParameter​(String name)
        Get a parameter that was explicitly set with setParameter.

        This method does not return a default parameter value, which cannot be determined until the node context is evaluated during the transformation process.

        The Saxon implementation for an IdentityTransformer always returns null, since parameters have no effect on an identity transformation.

        Specified by:
        getParameter in class Transformer
        Parameters:
        name - of Object to get
        Returns:
        A parameter that has been set with setParameter.
      • clearParameters

        public void clearParameters()
        Clear all parameters set with setParameter.
        Specified by:
        clearParameters in class Transformer
      • reportFatalError

        protected void reportFatalError​(XPathException err)