|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Source | |
javax.xml.transform | This package defines the generic APIs for processing transformation instructions, and performing a transformation from source to result. |
javax.xml.transform.dom | This package implements DOM-specific transformation APIs. |
javax.xml.transform.sax | This package implements SAX2-specific transformation APIs. |
javax.xml.transform.stream | This package implements stream- and URI- specific transformation APIs. |
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.stree | Implementation of the Xalan Source Tree, which is a DOM implementation that is optimized for XSLT processing and the needs of Xalan. |
org.apache.xalan.transformer | In charge of run-time transformations and the production of result trees. |
org.apache.xpath | Implementation of XPath; for the most part, only classes meant for public use are found at this root level of the XPath packages. |
Uses of Source in javax.xml.transform |
Methods in javax.xml.transform that return Source | |
Source |
URIResolver.resolve(java.lang.String href,
java.lang.String base)
Called by the processor when it encounters an xsl:include, xsl:import, or document() function. |
abstract Source |
TransformerFactory.getAssociatedStylesheet(Source source,
java.lang.String media,
java.lang.String title,
java.lang.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. |
Methods in javax.xml.transform with parameters of type Source | |
abstract void |
Transformer.transform(Source xmlSource,
Result outputTarget)
Process the source tree to the output result. |
abstract Transformer |
TransformerFactory.newTransformer(Source source)
Process the Source into a Transformer object. |
abstract Templates |
TransformerFactory.newTemplates(Source source)
Process the Source into a Templates object, which is a a compiled representation of the source. |
abstract Source |
TransformerFactory.getAssociatedStylesheet(Source source,
java.lang.String media,
java.lang.String title,
java.lang.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. |
Uses of Source in javax.xml.transform.dom |
Classes in javax.xml.transform.dom that implement Source | |
class |
DOMSource
Acts as a holder for a transformation Source tree in the form of a Document Object Model (DOM) tree. |
Uses of Source in javax.xml.transform.sax |
Classes in javax.xml.transform.sax that implement Source | |
class |
SAXSource
Acts as an holder for SAX-style Source. |
Methods in javax.xml.transform.sax with parameters of type Source | |
static InputSource |
SAXSource.sourceToInputSource(Source source)
Attempt to obtain a SAX InputSource object from a TrAX Source object. |
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 XMLFilter |
SAXTransformerFactory.newXMLFilter(Source src)
Create an XMLFilter that uses the given Source as the transformation instructions. |
Uses of Source in javax.xml.transform.stream |
Classes in javax.xml.transform.stream that implement Source | |
class |
StreamSource
Acts as an holder for a transformation Source in the form of a stream of XML markup. |
Uses of Source in org.apache.xalan.processor |
Methods in org.apache.xalan.processor that return Source | |
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. |
Source |
StylesheetPIHandler.getAssociatedStylesheet()
Return the last stylesheet found that match the constraints. |
Methods in org.apache.xalan.processor with parameters of type Source | |
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. |
XMLFilter |
TransformerFactoryImpl.newXMLFilter(Source src)
Create an XMLFilter that uses the given source as the transformation instructions. |
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. |
Transformer |
TransformerFactoryImpl.newTransformer(Source source)
Process the source into a Transformer object. |
Templates |
TransformerFactoryImpl.newTemplates(Source source)
Process the source into a Templates object, which is likely a compiled representation of the source. |
Uses of Source in org.apache.xalan.stree |
Methods in org.apache.xalan.stree that return Source | |
Source |
SourceTreeHandler.getInputSource()
Get Source Document. |
Methods in org.apache.xalan.stree with parameters of type Source | |
void |
SourceTreeHandler.setInputSource(Source source)
Set the Source document |
Uses of Source in org.apache.xalan.transformer |
Methods in org.apache.xalan.transformer with parameters of type Source | |
void |
TransformerIdentityImpl.transform(Source source,
Result outputTarget)
Process the source tree to the output result. |
void |
TransformerImpl.transform(Source source)
Process the source tree to SAX parse events. |
Node |
TransformerImpl.parseToNode(Source source)
**For internal use only** Process the an input source to a DOM node. |
void |
TransformerImpl.transform(Source xmlSource,
Result outputTarget)
Process the source tree to the output result. |
Uses of Source in org.apache.xpath |
Methods in org.apache.xpath that return Source | |
Source |
SourceTreeManager.resolveURI(java.lang.String base,
java.lang.String urlString,
SourceLocator locator)
This will be called by the processor when it encounters an xsl:include, xsl:import, or document() function. |
Methods in org.apache.xpath with parameters of type Source | |
void |
SourceTreeManager.putDocumentInCache(Node n,
Source source)
Put the source tree root node in the document cache. |
Node |
SourceTreeManager.getNode(Source source)
Given a Source object, find the node associated with it. |
Node |
SourceTreeManager.getSourceTree(Source source,
SourceLocator locator)
Get the source tree from the input source. |
Node |
SourceTreeManager.getDOMNode(Source source,
SourceLocator locator)
Try to create a DOM source tree from the input source. |
XMLReader |
SourceTreeManager.getXMLReader(Source inputSource,
SourceLocator locator)
This method returns the SAX2 parser to use with the InputSource obtained from this URI. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |