Class TransformerFactoryImpl
The system property that determines which Factory implementation to create is named "javax.xml.transform.TransformerFactory". This property names a concrete subclass of the TransformerFactory abstract class. If the property is not defined, a platform default is be used.
This implementation class implements the abstract methods on both the javax.xml.transform.TransformerFactory and javax.xml.transform.sax.SAXTransformerFactory classes.
-
Field Summary
Fields inherited from class SAXTransformerFactory
FEATURE, FEATURE_XMLFILTER -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncompositeStylesheet(SAXSource[] sources) Process a series of stylesheet inputs, treating them in import or cascade order.getAssociatedStylesheet(Source source, String media, String title, String charset) Get the stylesheet specification(s) associated via the xml-stylesheet processing instruction (see http://www.w3.org/TR/xml-stylesheet/) with the document document specified in the source parameter, and that match the given criteria.getAttribute(String name) Allows the user to retrieve specific attributes on the underlying implementation.Get the error event handler for the TransformerFactory.booleangetFeature(String name) Look up the value of a feature.getSAXSource(Source source, boolean isStyleSheet) Convert a supplied Source to a SAXSourceGet the parser for source documentsGet the parser for stylesheet documentsGet the object that is used by default during the transformation to resolve URIs used in document(), xsl:import, or xsl:include.static XMLReadermakeParser(String className) Create a new SAX XMLReader object using the class name provided.
The named class must exist and must implement the org.xml.sax.XMLReader or Parser interface.
This method returns an instance of the parser named.newTemplates(Source source) Process the Source into a Templates object, which is a a compiled representation of the source.Get a TemplatesHandler object that can process SAX ContentHandler events into a Templates object.Create a new Transformer object that performs a copy of the source to the result.newTransformer(Source source) Process the Source into a Transformer object.Get a TransformerHandler object that can process SAX ContentHandler events into a Result.Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the transformation instructions specified by the argument.newTransformerHandler(Templates templates) Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the Templates argument.newXMLFilter(Source src) Create an XMLFilter that uses the given Source as the transformation instructions.newXMLFilter(Templates templates) Create an XMLFilter, based on the Templates argument..voidsetAttribute(String name, Object value) Allows the user to set specific attributes on the underlying implementation.voidsetErrorListener(ErrorListener listener) Set the error event listener for the TransformerFactory, which is used for the processing of transformation instructions, and not for the transformation itself.voidsetFeature(String name, boolean value) Set a feature for thisTransformerFactoryandTransformers orTemplates created by this factory.voidsetURIResolver(URIResolver resolver) Set an object that is used by default during the transformation to resolve URIs used in xsl:import, or xsl:include.Methods inherited from class TransformerFactory
newDefaultInstance, newInstance, newInstance
-
Constructor Details
-
TransformerFactoryImpl
public TransformerFactoryImpl()Default constructor.
-
-
Method Details
-
newTransformer
Process the Source into a Transformer object. Care must be given not to use this object in multiple threads running concurrently. Different TransformerFactories can be used concurrently by different threads.- Specified by:
newTransformerin classTransformerFactory- Parameters:
source- An object that holds a URI, input stream, etc.- Returns:
- A Transformer object that may be used to perform a transformation in a single thread, never null.
- Throws:
TransformerConfigurationException- May throw this during the parse when it is constructing the Templates object and fails.
-
newTransformer
Create a new Transformer object that performs a copy of the source to the result.- Specified by:
newTransformerin classTransformerFactory- Returns:
- A Transformer object that may be used to perform a transformation in a single thread, never null.
- Throws:
TransformerConfigurationException- May throw this during the parse when it is constructing the Templates object and fails.
-
newTemplates
Process the Source into a Templates object, which is a a compiled representation of the source. This Templates object may then be used concurrently across multiple threads. Creating a Templates object allows the TransformerFactory to do detailed performance optimization of transformation instructions, without penalizing runtime transformation.- Specified by:
newTemplatesin classTransformerFactory- Parameters:
source- An object that holds a URL, input stream, etc.- Returns:
- A Templates object capable of being used for transformation purposes, never null.
- Throws:
TransformerConfigurationException- May throw this during the parse when it is constructing the Templates object and fails.
-
getSAXSource
-
getAssociatedStylesheet
public Source getAssociatedStylesheet(Source source, String media, String title, String charset) throws TransformerConfigurationException Get the stylesheet specification(s) associated via the xml-stylesheet processing instruction (see http://www.w3.org/TR/xml-stylesheet/) with the document document specified in the source parameter, and that match the given criteria. Note that it is possible to return several stylesheets, in which case they are applied as if they were a list of imports or cascades.- Specified by:
getAssociatedStylesheetin classTransformerFactory- Parameters:
source- The XML source document.media- The media attribute to be matched. May be null, in which case the prefered templates will be used (i.e. alternate = no).title- The value of the title attribute to match. May be null.charset- The value of the charset attribute to match. May be null.- Returns:
- A Source object suitable for passing to the TransformerFactory.
- Throws:
TransformerConfigurationException
-
compositeStylesheet
Process a series of stylesheet inputs, treating them in import or cascade order. This is mainly for support of the getAssociatedStylesheets method, but may be useful for other purposes.- Parameters:
sources- An array of SAX InputSource objects.- Returns:
- A Source object representing a composite stylesheet.
- Throws:
TransformerConfigurationException
-
setURIResolver
Set an object that is used by default during the transformation to resolve URIs used in xsl:import, or xsl:include.- Specified by:
setURIResolverin classTransformerFactory- Parameters:
resolver- An object that implements the URIResolver interface, or null.
-
getURIResolver
Get the object that is used by default during the transformation to resolve URIs used in document(), xsl:import, or xsl:include.- Specified by:
getURIResolverin classTransformerFactory- Returns:
- The URIResolver that was set with setURIResolver.
-
setFeature
Set a feature for this
Feature names are fully qualifiedTransformerFactoryandTransformers orTemplates created by this factory.URIs. Implementations may define their own features. AnTransformerConfigurationExceptionis thrown if thisTransformerFactoryor theTransformers orTemplates it creates cannot support the feature. It is possible for anTransformerFactoryto expose a feature value but be unable to change its state.All implementations are required to support the
XMLConstants.FEATURE_SECURE_PROCESSINGfeature. When the feature is:-
true: the implementation will limit XML processing to conform to implementation limits and behave in a secure fashion as defined by the implementation. Examples include resolving user defined style sheets and functions. If XML processing is limited for security reasons, it will be reported via a call to the registeredErrorListener.fatalError(javax.xml.transform.TransformerException exception). SeesetErrorListener(javax.xml.transform.ErrorListener listener). -
false: the implementation will processing XML according to the XML specifications without regard to possible implementation limits.
The Saxon implementation does not support the secure processing feature.
- Specified by:
setFeaturein classTransformerFactory- Parameters:
name- Feature name.value- Is feature statetrueorfalse.- Throws:
TransformerConfigurationException- if thisTransformerFactoryor theTransformers orTemplates it creates cannot support this feature.NullPointerException- If thenameparameter is null.
-
-
getFeature
Look up the value of a feature.The feature name is any absolute URI.
- Specified by:
getFeaturein classTransformerFactory- Parameters:
name- The feature name, which is an absolute URI.- Returns:
- The current state of the feature (true or false).
-
setAttribute
Allows the user to set specific attributes on the underlying implementation. An attribute in this context is defined to be an option that the implementation provides.- Specified by:
setAttributein classTransformerFactory- Parameters:
name- The name of the attribute. This must be one of the constants defined in class FeatureKeys.value- The value of the attribute.- Throws:
IllegalArgumentException- thrown if Saxon doesn't recognize the attribute.
-
getAttribute
Allows the user to retrieve specific attributes on the underlying implementation.- Specified by:
getAttributein classTransformerFactory- Parameters:
name- The name of the attribute.- Returns:
- value The value of the attribute.
- Throws:
IllegalArgumentException- thrown if the underlying implementation doesn't recognize the attribute.
-
setErrorListener
Set the error event listener for the TransformerFactory, which is used for the processing of transformation instructions, and not for the transformation itself.- Specified by:
setErrorListenerin classTransformerFactory- Parameters:
listener- The new error listener.- Throws:
IllegalArgumentException- if listener is null.
-
getErrorListener
Get the error event handler for the TransformerFactory.- Specified by:
getErrorListenerin classTransformerFactory- Returns:
- The current error handler, which should never be null.
-
getSourceParser
Get the parser for source documents -
getStyleParser
Get the parser for stylesheet documents -
makeParser
Create a new SAX XMLReader object using the class name provided.
The named class must exist and must implement the org.xml.sax.XMLReader or Parser interface.
This method returns an instance of the parser named.- Parameters:
className- A string containing the name of the SAX parser class, for example "com.microstar.sax.LarkDriver"- Returns:
- an instance of the Parser class named, or null if it is not loadable or is not a Parser.
- Throws:
TransformerFactoryConfigurationError
-
newTransformerHandler
public TransformerHandler newTransformerHandler(Source src) throws TransformerConfigurationException Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the transformation instructions specified by the argument.- Specified by:
newTransformerHandlerin classSAXTransformerFactory- Parameters:
src- The Source of the transformation instructions.- Returns:
- TransformerHandler ready to transform SAX events.
- Throws:
TransformerConfigurationException- If for some reason the TransformerHandler can not be created.
-
newTransformerHandler
public TransformerHandler newTransformerHandler(Templates templates) throws TransformerConfigurationException Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the Templates argument.- Specified by:
newTransformerHandlerin classSAXTransformerFactory- Parameters:
templates- The compiled transformation instructions.- Returns:
- TransformerHandler ready to transform SAX events.
- Throws:
TransformerConfigurationException- If for some reason the TransformerHandler can not be created.
-
newTransformerHandler
Get a TransformerHandler object that can process SAX ContentHandler events into a Result. The transformation is defined as an identity (or copy) transformation, for example to copy a series of SAX parse events into a DOM tree.- Specified by:
newTransformerHandlerin classSAXTransformerFactory- Returns:
- A non-null reference to a TransformerHandler, that may be used as a ContentHandler for SAX parse events.
- Throws:
TransformerConfigurationException- If for some reason the TransformerHandler cannot be created.
-
newTemplatesHandler
Get a TemplatesHandler object that can process SAX ContentHandler events into a Templates object.- Specified by:
newTemplatesHandlerin classSAXTransformerFactory- Returns:
- A non-null reference to a TransformerHandler, that may be used as a ContentHandler for SAX parse events.
- Throws:
TransformerConfigurationException- If for some reason the TemplatesHandler cannot be created.
-
newXMLFilter
Create an XMLFilter that uses the given Source as the transformation instructions.- Specified by:
newXMLFilterin classSAXTransformerFactory- Parameters:
src- The Source of the transformation instructions.- Returns:
- An XMLFilter object, or null if this feature is not supported.
- Throws:
TransformerConfigurationException- If for some reason the XMLFilter cannot be created.
-
newXMLFilter
Create an XMLFilter, based on the Templates argument..- Specified by:
newXMLFilterin classSAXTransformerFactory- Parameters:
templates- The compiled transformation instructions.- Returns:
- An XMLFilter object, or null if this feature is not supported.
- Throws:
TransformerConfigurationException- If for some reason the XMLFilter cannot be created.
-