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.transformer In charge of run-time transformations and the production of result trees. 
org.apache.xalan.xsltc.trax   
 

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.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 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.transform(Source xmlSource, Result outputTarget, boolean shouldRelease)
          Process the source tree to the output result.
 void TransformerImpl.transformNode(int 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 TransformerHandlerImpl.setResult(Result result)
          Enables the user of the TransformerHandler to set the to set the Result for the transformation.
 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.
 

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

Methods in org.apache.xalan.xsltc.trax with parameters of type Result
 void TransformerHandlerImpl.setResult(Result result)
          Implements javax.xml.transform.sax.TransformerHandler.setResult() Enables the user of the TransformerHandler to set the to set the Result for the transformation.
 void TransformerImpl.transform(Source source, Result result)
          Implements JAXP's Transformer.transform()
 TransletOutputHandler TransformerImpl.getOutputHandler(Result result)
          Create an output handler for the transformation output based on the type and contents of the TrAX Result object passed to the transform() method.
 



Copyright © 2002 Apache XML Project. All Rights Reserved.