API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.xml.transform.dom. DOMResult View Source
Author(s)
Jeff Suttor
Since
Version
$Revision: 1.2 $, $Date: 2005/06/10 03:50:39 $
Serial
Hierarchy
 Object
      DOMResult
Implements
 Result
Subclasses
Description
public class DOMResult
  Acts as a holder for a transformation result tree in the form of a Document Object Model (DOM) tree.
See also:   
Constructors
public DOMResult ()
  Zero-argument default constructor.
public DOMResult (Node node)
  Use a DOM node to create a new output target.
public DOMResult (Node node, Node nextSibling)
  Use a DOM node to create a new output target specifying the child node where the result nodes should be inserted before.
public DOMResult (Node node, Node nextSibling, String systemId)
  Use a DOM node to create a new output target specifying the child node where the result nodes should be inserted before and the specified System ID.
public DOMResult (Node node, String systemId)
  Use a DOM node to create a new output target with the specified System ID.
Methods
Hide/Show inherited methods
public Node getNextSibling ()
  Get the child node before which the result nodes will be inserted.
public Node getNode ()
  Get the node that will contain the result DOM tree.
public String getSystemId () [Specified in Result]
  Get the System Identifier.
public void setNextSibling (Node nextSibling)
  Set the child node before which the result nodes will be inserted.
public void setNode (Node node)
  Set the node that will contain the result DOM tree.
public void setSystemId (String systemId) [Specified in Result]
  Set the systemId that may be used in association with the node.
Fields
Hide/Show inherited fields
publicfinalstatic String FEATURE = "http://javax.xml.transform.dom.DOMResult/feature"
  If TransformerFactory.getFeature(java.lang.String) returns true when passed this value as an argument, the Transformer supports Result output of this type.
publicfinalstatic String PI_DISABLE_OUTPUT_ESCAPING = "javax.xml.transform.disable-output-escaping" [Inherited From Result]
  The name of the processing instruction that is sent if the result tree disables output escaping.
publicfinalstatic String PI_ENABLE_OUTPUT_ESCAPING = "javax.xml.transform.enable-output-escaping" [Inherited From Result]
  The name of the processing instruction that is sent if the result tree enables output escaping at some point after having received a PI_DISABLE_OUTPUT_ESCAPING processing instruction.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar