org.apache.xalan.xsltc.trax

Class SmartTransformerFactoryImpl


public class SmartTransformerFactoryImpl
extends SAXTransformerFactory

Implementation of a transformer factory that uses an XSLTC transformer factory for the creation of Templates objects and uses the Xalan processor transformer factory for the creation of Transformer objects.
Author:
G. Todd Miller

Constructor Summary

SmartTransformerFactoryImpl()
implementation of the SmartTransformerFactory.

Method Summary

Source
getAssociatedStylesheet(Source source, String media, String title, String charset)
Object
getAttribute(String name)
ErrorListener
getErrorListener()
boolean
getFeature(String name)
javax.xml.transform.sax.TransformerFactory implementation.
URIResolver
getURIResolver()
Templates
newTemplates(Source source)
Create a Templates object that from the input stylesheet Uses the org.apache.xalan.xsltc.trax.TransformerFactory.
TemplatesHandler
newTemplatesHandler()
Get a TemplatesHandler object that can process SAX ContentHandler events into a Templates object.
Transformer
newTransformer()
Create a Transformer object that copies the input document to the result.
Transformer
newTransformer(Source source)
Create a Transformer object that from the input stylesheet Uses the org.apache.xalan.processor.TransformerFactory.
TransformerHandler
newTransformerHandler()
Get a TransformerHandler object that can process SAX ContentHandler events based on a copy transformer.
TransformerHandler
newTransformerHandler(Source src)
Get a TransformerHandler object that can process SAX ContentHandler events based on a transformer specified by the stylesheet Source.
TransformerHandler
newTransformerHandler(Templates templates)
Get a TransformerHandler object that can process SAX ContentHandler events based on a transformer specified by the stylesheet Source.
XMLFilter
newXMLFilter(Source src)
Create an XMLFilter that uses the given source as the transformation instructions.
XMLFilter
newXMLFilter(Templates templates)
void
setAttribute(String name, Object value)
void
setErrorListener(ErrorListener listener)
void
setFeature(String name, boolean value)
Set a feature for this SmartTransformerFactory and Transformers or Templates created by this factory.

Feature names are fully qualified java.net.URIs.

void
setURIResolver(URIResolver resolver)

Constructor Details

SmartTransformerFactoryImpl

public SmartTransformerFactoryImpl()
implementation of the SmartTransformerFactory. This factory uses org.apache.xalan.xsltc.trax.TransformerFactory to return Templates objects; and uses org.apache.xalan.processor.TransformerFactory to return Transformer objects.

Method Details

getAssociatedStylesheet

public Source getAssociatedStylesheet(Source source,
                                      String media,
                                      String title,
                                      String charset)
            throws TransformerConfigurationException

getAttribute

public Object getAttribute(String name)
            throws IllegalArgumentException

getErrorListener

public ErrorListener getErrorListener()

getFeature

public boolean getFeature(String name)
javax.xml.transform.sax.TransformerFactory implementation. Look up the value of a feature (to see if it is supported). This method must be updated as the various methods and features of this class are implemented.
Parameters:
name - The feature name
Returns:
'true' if feature is supported, 'false' if not

getURIResolver

public URIResolver getURIResolver()

newTemplates

public Templates newTemplates(Source source)
            throws TransformerConfigurationException
Create a Templates object that from the input stylesheet Uses the org.apache.xalan.xsltc.trax.TransformerFactory.
Parameters:
source - the stylesheet.
Returns:
A Templates object.

newTemplatesHandler

public TemplatesHandler newTemplatesHandler()
            throws TransformerConfigurationException
Get a TemplatesHandler object that can process SAX ContentHandler events into a Templates object. Uses the org.apache.xalan.xsltc.trax.TransformerFactory.

newTransformer

public Transformer newTransformer()
            throws TransformerConfigurationException
Create a Transformer object that copies the input document to the result. Uses the org.apache.xalan.processor.TransformerFactory.
Returns:
A Transformer object.

newTransformer

public Transformer newTransformer(Source source)
            throws TransformerConfigurationException
Create a Transformer object that from the input stylesheet Uses the org.apache.xalan.processor.TransformerFactory.
Parameters:
source - the stylesheet.
Returns:
A Transformer object.

newTransformerHandler

public TransformerHandler newTransformerHandler()
            throws TransformerConfigurationException
Get a TransformerHandler object that can process SAX ContentHandler events based on a copy transformer. Uses org.apache.xalan.processor.TransformerFactory.

newTransformerHandler

public TransformerHandler newTransformerHandler(Source src)
            throws TransformerConfigurationException
Get a TransformerHandler object that can process SAX ContentHandler events based on a transformer specified by the stylesheet Source. Uses org.apache.xalan.processor.TransformerFactory.

newTransformerHandler

public TransformerHandler newTransformerHandler(Templates templates)
            throws TransformerConfigurationException
Get a TransformerHandler object that can process SAX ContentHandler events based on a transformer specified by the stylesheet Source. Uses org.apache.xalan.xsltc.trax.TransformerFactory.

newXMLFilter

public XMLFilter newXMLFilter(Source src)
            throws TransformerConfigurationException
Create an XMLFilter that uses the given source as the transformation instructions. Uses org.apache.xalan.xsltc.trax.TransformerFactory.

newXMLFilter

public XMLFilter newXMLFilter(Templates templates)
            throws TransformerConfigurationException

setAttribute

public void setAttribute(String name,
                         Object value)
            throws IllegalArgumentException

setErrorListener

public void setErrorListener(ErrorListener listener)
            throws IllegalArgumentException

setFeature

public void setFeature(String name,
                       boolean value)
            throws TransformerConfigurationException
Set a feature for this SmartTransformerFactory and Transformers or Templates created by this factory.

Feature names are fully qualified java.net.URIs. Implementations may define their own features. An TransformerConfigurationException is thrown if this TransformerFactory or the Transformers or Templates it creates cannot support the feature. It is possible for an TransformerFactory to expose a feature value but be unable to change its state.

See javax.xml.transform.TransformerFactory for full documentation of specific features.

Parameters:
name - Feature name.
value - Is feature state true or false.

setURIResolver

public void setURIResolver(URIResolver resolver)

Copyright B) 2006 Apache XML Project. All Rights Reserved.