Uses of Interface
javax.xml.transform.Result

Packages that use Result
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.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.xalan.xsltc.runtime   
 

Uses of Result in javax.xml.transform
 

Methods in javax.xml.transform with parameters of type Result
abstract  void Transformer.transform(Source xmlSource, Result outputTarget)
          Process the source tree to the output result.
 

Uses of Result in javax.xml.transform.dom
 

Classes in javax.xml.transform.dom that implement Result
 class DOMResult
          Acts as a holder for a transformation result tree, in the form of a Document Object Model (DOM) tree.
 

Uses of Result in javax.xml.transform.sax
 

Classes in javax.xml.transform.sax that implement Result
 class SAXResult
          Acts as an holder for a transformation Result.
 

Methods in javax.xml.transform.sax with parameters of type Result
 void TransformerHandler.setResult(Result result)
          Enables the user of the TransformerHandler to set the to set the Result for the transformation.
 

Uses of Result in javax.xml.transform.stream
 

Classes in javax.xml.transform.stream that implement Result
 class StreamResult
          Acts as an holder for a transformation result, which may be XML, plain Text, HTML, or some other form of markup.
 

Uses of Result in org.apache.xalan.stree
 

Methods in org.apache.xalan.stree with parameters of type Result
 void SourceTreeHandler.setResult(Result result)
          Method setResult allows the user of the TransformerHandler to set the result of the transform.
 

Uses of Result in org.apache.xalan.transformer
 

Methods in org.apache.xalan.transformer that return Result
 Result TransformerImpl.getOutputTarget()
          Get the original output target.
 

Methods in org.apache.xalan.transformer with parameters of type Result
 void TransformerIdentityImpl.setResult(Result result)
          Enables the user of the TransformerHandler to set the to set the Result for the transformation.
 void TransformerIdentityImpl.transform(Source source, Result outputTarget)
          Process the source tree to the output result.
 void TransformerImpl.setOutputTarget(Result outputTarget)
          Set the original output target.
 ContentHandler TransformerImpl.createResultContentHandler(Result outputTarget)
          Create a result ContentHandler from a Result object, based on the current OutputProperties.
 ContentHandler TransformerImpl.createResultContentHandler(Result outputTarget, OutputProperties format)
          Create a ContentHandler from a Result object and an OutputProperties.
 void TransformerImpl.transform(Source xmlSource, Result outputTarget)
          Process the source tree to the output result.
 void TransformerImpl.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.
 

Uses of Result in org.apache.xalan.xsltc.runtime
 

Methods in org.apache.xalan.xsltc.runtime with parameters of type Result
 void AbstractTranslet.transform(Source xmlsrc, Result outputTarget)
          Transformer methods
 



Copyright © 2000 Apache XML Project. All Rights Reserved.