Class DOMResult

java.lang.Object
javax.xml.transform.dom.DOMResult
All Implemented Interfaces:
Result

public class DOMResult extends Object implements Result
Acts as a holder for a transformation result tree in the form of a Document Object Model (DOM) tree.

If no output DOM source is set, the transformation will create a Document node as the holder for the result of the transformation, which may be retrieved with getNode().

Since:
1.4
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    If TransformerFactory.getFeature(String) returns true when passed this value as an argument, the Transformer supports Result output of this type.

    Fields declared in interface Result

    PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
    Modifier and Type
    Field
    Description
    static final String
    The name of the processing instruction that is sent if the result tree disables output escaping.
    static final String
    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.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Zero-argument default constructor.
    Use a DOM node to create a new output target.
    DOMResult(Node node, String systemId)
    Use a DOM node to create a new output target with the specified System ID.
    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.
    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.
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the child node before which the result nodes will be inserted.
    Get the node that will contain the result DOM tree.
    Get the System Identifier.
    void
    setNextSibling(Node nextSibling)
    Set the child node before which the result nodes will be inserted.
    void
    setNode(Node node)
    Set the node that will contain the result DOM tree.
    void
    setSystemId(String systemId)
    Set the systemId that may be used in association with the node.

    Methods declared in class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    Modifier and Type
    Method
    Description
    protected Object
    Creates and returns a copy of this object.
    boolean
    Indicates whether some other object is "equal to" this one.
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Finalization is deprecated and subject to removal in a future release.
    final Class<?>
    Returns the runtime class of this Object.
    int
    Returns a hash code value for this object.
    final void
    Wakes up a single thread that is waiting on this object's monitor.
    final void
    Wakes up all threads that are waiting on this object's monitor.
    Returns a string representation of the object.
    final void
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
    final void
    wait(long timeoutMillis)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
    final void
    wait(long timeoutMillis, int nanos)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
  • Field Details

  • Constructor Details

    • DOMResult

      public DOMResult()
      Zero-argument default constructor.

      node, siblingNode and systemId will be set to null.

    • DOMResult

      public DOMResult(Node node)
      Use a DOM node to create a new output target.

      In practice, the node should be a Document node, a DocumentFragment node, or a Element node. In other words, a node that accepts children.

      siblingNode and systemId will be set to null.

      Parameters:
      node - The DOM node that will contain the result tree.
    • DOMResult

      public DOMResult(Node node, String systemId)
      Use a DOM node to create a new output target with the specified System ID.

      In practice, the node should be a Document node, a DocumentFragment node, or a Element node. In other words, a node that accepts children.

      siblingNode will be set to null.

      Parameters:
      node - The DOM node that will contain the result tree.
      systemId - The system identifier which may be used in association with this node.
    • DOMResult

      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.

      In practice, node and nextSibling should be a Document node, a DocumentFragment node, or a Element node. In other words, a node that accepts children.

      Use nextSibling to specify the child node where the result nodes should be inserted before. If nextSibling is not a sibling of node, then an IllegalArgumentException is thrown. If node is null and nextSibling is not null, then an IllegalArgumentException is thrown. If nextSibling is null, then the behavior is the same as calling DOMResult(Node node), i.e. append the result nodes as the last child of the specified node.

      systemId will be set to null.

      Parameters:
      node - The DOM node that will contain the result tree.
      nextSibling - The child node where the result nodes should be inserted before.
      Throws:
      IllegalArgumentException - If nextSibling is not a sibling of node or node is null and nextSibling is not null.
      Since:
      1.5
    • DOMResult

      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.

      In practice, node and nextSibling should be a Document node, a DocumentFragment node, or a Element node. In other words, a node that accepts children.

      Use nextSibling to specify the child node where the result nodes should be inserted before. If nextSibling is not a sibling of node, then an IllegalArgumentException is thrown. If node is null and nextSibling is not null, then an IllegalArgumentException is thrown. If nextSibling is null, then the behavior is the same as calling DOMResult(Node node, String systemId), i.e. append the result nodes as the last child of the specified node and use the specified System ID.

      Parameters:
      node - The DOM node that will contain the result tree.
      nextSibling - The child node where the result nodes should be inserted before.
      systemId - The system identifier which may be used in association with this node.
      Throws:
      IllegalArgumentException - If nextSibling is not a sibling of node or node is null and nextSibling is not null.
      Since:
      1.5
  • Method Details