| Package | Description |
|---|---|
| javax.xml.transform |
This package defines the generic APIs for processing transformation instructions, and performing a transformation from source to result.
|
| javax.xml.transform.sax |
This package implements SAX2-specific transformation APIs.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Source |
TransformerFactory.getAssociatedStylesheet(Source
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
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
Process the
Source into a
Transformer
Object.
|
abstract void |
TransformerFactory.setFeature(String
Set a feature for this
TransformerFactory and
Transformers or
Templates 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
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
Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the Templates argument.
|
abstract XMLFilter |
SAXTransformerFactory.newXMLFilter(Source
Create an XMLFilter that uses the given Source as the transformation instructions.
|
abstract XMLFilter |
SAXTransformerFactory.newXMLFilter(Templates
Create an XMLFilter, based on the Templates argument..
|