Uses of Interface
javax.xml.transform.Result

Packages that use Result
javax.xml.transform   
javax.xml.transform.dom   
javax.xml.transform.sax   
javax.xml.transform.stream   
javax.xml.validation   
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)
          Transform the XML Source to a 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)
          Set the Result associated with this TransformerHandler to be used 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 javax.xml.validation
 

Methods in javax.xml.validation with parameters of type Result
abstract  void Validator.validate(Source source, Result result)
          Validates the specified input and send the augmented validation result to the specified output.
 

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.
 SerializationHandler TransformerImpl.createSerializationHandler(Result outputTarget)
          Create a result ContentHandler from a Result object, based on the current OutputProperties.
 SerializationHandler TransformerImpl.createSerializationHandler(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()
 SerializationHandler 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 © 2006 Apache XML Project. All Rights Reserved.