|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TransformException | |
org.apache.trax | Defines a global interface for generating Templates and performing XML transformations. |
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.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 TransformException in org.apache.trax |
Methods in org.apache.trax that throw TransformException | |
Templates |
TemplatesBuilder.getTemplates()
When this object is used as a ContentHandler or DocumentHandler, it creates a Templates object, which the caller can get once the SAX events have been completed. |
static void |
Examples.main(java.lang.String[] argv)
|
static void |
Examples.exampleSimple(java.lang.String sourceID,
java.lang.String xslID)
Show the simplest possible transformation from system id to output stream. |
static void |
Examples.exampleParam(java.lang.String sourceID,
java.lang.String xslID)
This shows how to set a parameter for use by the templates. |
static void |
Examples.exampleOutputFormat(java.lang.String sourceID,
java.lang.String xslID)
Show how to override output properties. |
static void |
Examples.exampleUseAssociated()
Show how to get stylesheets that are associated with a given xml document via the xml-stylesheet PI (see http://www.w3.org/TR/xml-stylesheet/). |
void |
Transformer.transform(InputSource xmlSource)
Process the source tree to SAX parse events. |
void |
Transformer.transform(InputSource xmlSource,
Result outputTarget)
Process the source tree to the output result. |
void |
Transformer.transformNode(Node node,
Result outputTarget)
Process the source node to the output result, if the processor supports the "http://xml.org/trax/features/dom/input" feature. |
void |
Transformer.transformNode(Node node)
Process the source node to to SAX parse events, if the processor supports the "http://xml.org/trax/features/dom/input" feature. |
Node |
URIResolver.getDOMNode(InputSource inputSource)
This will be called by the processor when it encounters an xsl:include, xsl:import, or document() function, if it needs a DOM tree. |
XMLReader |
URIResolver.getXMLReader(InputSource inputSource)
This method returns the SAX2 parser to use with the InputSource obtained from this URI. |
Uses of TransformException in org.apache.xalan.processor |
Methods in org.apache.xalan.processor that throw TransformException | |
Templates |
StylesheetHandler.getTemplates()
**For advanced use only** When this object is used as a ContentHandler or ContentHandler, it will create a Templates object, which the caller can get once the SAX events have been completed. |
Uses of TransformException in org.apache.xalan.transformer |
Methods in org.apache.xalan.transformer that throw TransformException | |
void |
TransformerImpl.transform(InputSource xmlSource)
**For advanced use only** Process the source tree to SAX parse events. |
Node |
TransformerImpl.parseToNode(InputSource xmlSource)
**For advanced use only** Process the an input source to a DOM node. |
ContentHandler |
TransformerImpl.createResultContentHandler(Result outputTarget)
**For advanced use only** Create a ContentHandler from a Result object. |
ContentHandler |
TransformerImpl.createResultContentHandler(Result outputTarget,
OutputFormat format)
**For advanced use only** Create a ContentHandler from a Result object. |
void |
TransformerImpl.transform(InputSource xmlSource,
Result outputTarget)
**For advanced use only** Process the source tree to the output result. |
void |
TransformerImpl.transformNode(Node node,
Result outputTarget)
**For advanced use only** Process the source node to the output result, if the processor supports the "http://xml.org/trax/features/dom/input" feature. |
void |
TransformerImpl.transformNode(Node node)
**For advanced use only** Process the source node to the output result, if the processor supports the "http://xml.org/trax/features/dom/input" feature. |
Uses of TransformException in org.apache.xpath |
Methods in org.apache.xpath that throw TransformException | |
InputSource |
SourceTreeManager.resolveURI(java.lang.String base,
java.lang.String urlString,
Locator locator)
This will be called by the processor when it encounters an xsl:include, xsl:import, or document() function. |
Node |
SourceTreeManager.findNodeFromURL(java.lang.String base,
java.lang.String url,
Locator locator)
Given a URL, find the node associated with that document. |
Node |
SourceTreeManager.getSourceTree(java.lang.String base,
java.lang.String urlString,
Locator locator)
Get the source tree from the a base URL and a URL string. |
Node |
SourceTreeManager.getSourceTree(InputSource source,
Locator locator)
Get the source tree from the input source. |
Node |
SourceTreeManager.getDOMNode(InputSource source,
Locator locator)
Try to create a DOM source tree from the input source. |
XMLReader |
SourceTreeManager.getXMLReader(InputSource inputSource,
Locator locator)
This method returns the SAX2 parser to use with the InputSource obtained from this URI. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |