Package | Description |
---|---|
javax.xml.transform | |
javax.xml.transform.sax | |
org.apache.xalan.lib |
Extension elements and functions shipped with Xalan-Java, including EXSLT functions.
|
org.apache.xalan.processor |
Parses an XSLT stylesheet document (which may include and import other stylesheet documents) and produces a StylesheetRoot
(a TRaX Templates object).
|
org.apache.xalan.templates |
Implements the
Templates interface,
and defines a set of classes that represent an XSLT stylesheet. |
org.apache.xalan.transformer |
In charge of run-time transformations and the production of result trees.
|
org.apache.xalan.xsltc.trax |
Modifier and Type | Method and Description |
---|---|
abstract Source |
TransformerFactory.getAssociatedStylesheet(Source source,
java.lang.String media,
java.lang.String title,
java.lang.String charset)
Get the stylesheet specification(s) associated with the
XML
Source document via the
xml-stylesheet processing instruction that match the given criteria. |
abstract Templates |
TransformerFactory.newTemplates(Source source)
Process the Source into a Templates object, which is a
a compiled representation of the source.
|
abstract Transformer |
TransformerFactory.newTransformer()
Create a new
Transformer that performs a copy
of the Source to the Result . |
Transformer |
Templates.newTransformer()
Create a new transformation context for this Templates object.
|
abstract Transformer |
TransformerFactory.newTransformer(Source source)
Process the
Source into a Transformer
Object . |
abstract void |
TransformerFactory.setFeature(java.lang.String name,
boolean value)
Set a feature for this
TransformerFactory and Transformer s
or Template s created by this factory. |
Modifier and Type | Method and Description |
---|---|
abstract TemplatesHandler |
SAXTransformerFactory.newTemplatesHandler()
Get a TemplatesHandler object that can process SAX
ContentHandler events into a Templates object.
|
abstract TransformerHandler |
SAXTransformerFactory.newTransformerHandler()
Get a TransformerHandler object that can process SAX
ContentHandler events into a Result.
|
abstract TransformerHandler |
SAXTransformerFactory.newTransformerHandler(Source src)
Get a TransformerHandler object that can process SAX
ContentHandler events into a Result, based on the transformation
instructions specified by the argument.
|
abstract TransformerHandler |
SAXTransformerFactory.newTransformerHandler(Templates templates)
Get a TransformerHandler object that can process SAX
ContentHandler events into a Result, based on the Templates argument.
|
abstract XMLFilter |
SAXTransformerFactory.newXMLFilter(Source src)
Create an XMLFilter that uses the given Source as the
transformation instructions.
|
abstract XMLFilter |
SAXTransformerFactory.newXMLFilter(Templates templates)
Create an XMLFilter, based on the Templates argument..
|
Modifier and Type | Method and Description |
---|---|
void |
PipeDocument.pipeDocument(XSLProcessorContext context,
ElemExtensionCall elem)
Extension element for piping an XML document through a series of 1 or more transformations.
|
void |
PipeDocument.usePipe(java.util.Vector vTHandler,
java.lang.String source,
java.lang.String target)
Uses a Vector of TransformerHandlers to pipe XML input document through
a series of 1 or more transformations.
|
Modifier and Type | Method and Description |
---|---|
Source |
TransformerFactoryImpl.getAssociatedStylesheet(Source source,
java.lang.String media,
java.lang.String title,
java.lang.String charset)
Get InputSource specification(s) that are associated with the
given document specified in the source param,
via the xml-stylesheet processing instruction
(see http://www.w3.org/TR/xml-stylesheet/), and that matches
the given criteria.
|
Templates |
TransformerFactoryImpl.newTemplates(Source source)
Process the source into a Templates object, which is likely
a compiled representation of the source.
|
TemplatesHandler |
TransformerFactoryImpl.newTemplatesHandler()
Create a new Transformer object that performs a copy
of the source to the result.
|
Transformer |
TransformerFactoryImpl.newTransformer()
Create a new Transformer object that performs a copy
of the source to the result.
|
Transformer |
TransformerFactoryImpl.newTransformer(Source source)
Process the source into a Transformer object.
|
TransformerHandler |
TransformerFactoryImpl.newTransformerHandler()
Get a TransformerHandler object that can process SAX
ContentHandler events into a Result.
|
TransformerHandler |
TransformerFactoryImpl.newTransformerHandler(Source src)
Get a TransformerHandler object that can process SAX
ContentHandler events into a Result, based on the transformation
instructions specified by the argument.
|
TransformerHandler |
TransformerFactoryImpl.newTransformerHandler(Templates templates)
Get a TransformerHandler object that can process SAX
ContentHandler events into a Result, based on the Templates argument.
|
XMLFilter |
TransformerFactoryImpl.newXMLFilter(Source src)
Create an XMLFilter that uses the given source as the
transformation instructions.
|
XMLFilter |
TransformerFactoryImpl.newXMLFilter(Templates templates)
Create an XMLFilter that uses the given source as the
transformation instructions.
|
Templates |
TransformerFactoryImpl.processFromNode(Node node) |
void |
TransformerFactoryImpl.setFeature(java.lang.String name,
boolean value)
Set a feature for this
TransformerFactory and Transformer s
or Template s created by this factory. |
Constructor and Description |
---|
StylesheetHandler(TransformerFactoryImpl processor)
Create a StylesheetHandler object, creating a root stylesheet
as the target.
|
Constructor and Description |
---|
StylesheetRoot(ErrorListener errorListener)
Uses an XSL stylesheet document.
|
StylesheetRoot(XSLTSchema schema,
ErrorListener listener)
Creates a StylesheetRoot and retains a pointer to the schema used to create this
StylesheetRoot.
|
Constructor and Description |
---|
TrAXFilter(Templates templates)
Construct an empty XML filter, with no parent.
|
Modifier and Type | Method and Description |
---|---|
Source |
TransformerFactoryImpl.getAssociatedStylesheet(Source source,
java.lang.String media,
java.lang.String title,
java.lang.String charset)
javax.xml.transform.sax.TransformerFactory implementation.
|
Source |
SmartTransformerFactoryImpl.getAssociatedStylesheet(Source source,
java.lang.String media,
java.lang.String title,
java.lang.String charset) |
static InputSource |
Util.getInputSource(XSLTC xsltc,
Source source)
Creates a SAX2 InputSource object from a TrAX Source object
|
Templates |
TransformerFactoryImpl.newTemplates(Source source)
javax.xml.transform.sax.TransformerFactory implementation.
|
Templates |
SmartTransformerFactoryImpl.newTemplates(Source source)
Create a Templates object that from the input stylesheet
Uses the org.apache.xalan.xsltc.trax.TransformerFactory.
|
TemplatesHandler |
TransformerFactoryImpl.newTemplatesHandler()
javax.xml.transform.sax.SAXTransformerFactory implementation.
|
TemplatesHandler |
SmartTransformerFactoryImpl.newTemplatesHandler()
Get a TemplatesHandler object that can process SAX ContentHandler
events into a Templates object.
|
Transformer |
TransformerFactoryImpl.newTransformer()
javax.xml.transform.sax.TransformerFactory implementation.
|
Transformer |
TemplatesImpl.newTransformer()
Implements JAXP's Templates.newTransformer()
|
Transformer |
SmartTransformerFactoryImpl.newTransformer()
Create a Transformer object that copies the input document to the
result.
|
Transformer |
TransformerFactoryImpl.newTransformer(Source source)
javax.xml.transform.sax.TransformerFactory implementation.
|
Transformer |
SmartTransformerFactoryImpl.newTransformer(Source source)
Create a Transformer object that from the input stylesheet
Uses the org.apache.xalan.processor.TransformerFactory.
|
TransformerHandler |
TransformerFactoryImpl.newTransformerHandler()
javax.xml.transform.sax.SAXTransformerFactory implementation.
|
TransformerHandler |
SmartTransformerFactoryImpl.newTransformerHandler()
Get a TransformerHandler object that can process SAX ContentHandler
events based on a copy transformer.
|
TransformerHandler |
TransformerFactoryImpl.newTransformerHandler(Source src)
javax.xml.transform.sax.SAXTransformerFactory implementation.
|
TransformerHandler |
SmartTransformerFactoryImpl.newTransformerHandler(Source src)
Get a TransformerHandler object that can process SAX ContentHandler
events based on a transformer specified by the stylesheet Source.
|
TransformerHandler |
TransformerFactoryImpl.newTransformerHandler(Templates templates)
javax.xml.transform.sax.SAXTransformerFactory implementation.
|
TransformerHandler |
SmartTransformerFactoryImpl.newTransformerHandler(Templates templates)
Get a TransformerHandler object that can process SAX ContentHandler
events based on a transformer specified by the stylesheet Source.
|
XMLFilter |
TransformerFactoryImpl.newXMLFilter(Source src)
javax.xml.transform.sax.SAXTransformerFactory implementation.
|
XMLFilter |
SmartTransformerFactoryImpl.newXMLFilter(Source src)
Create an XMLFilter that uses the given source as the
transformation instructions.
|
XMLFilter |
TransformerFactoryImpl.newXMLFilter(Templates templates)
javax.xml.transform.sax.SAXTransformerFactory implementation.
|
XMLFilter |
SmartTransformerFactoryImpl.newXMLFilter(Templates templates) |
void |
TransformerFactoryImpl.setFeature(java.lang.String name,
boolean value)
Set a feature for this
TransformerFactory and Transformer s
or Template s created by this factory. |
void |
SmartTransformerFactoryImpl.setFeature(java.lang.String name,
boolean value)
Set a feature for this
SmartTransformerFactory and Transformer s
or Template s created by this factory. |
Constructor and Description |
---|
TrAXFilter(Templates templates) |
Copyright © 2014 Apache XML Project. All Rights Reserved.