javax.xml.transform.dom
Class DOMResult
java.lang.Object
javax.xml.transform.dom.DOMResult
- Result
public class DOMResult
extends java.lang.Object
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.
DOMResult() - Zero-argument default constructor.
|
DOMResult(Node node) - Use a DOM node to create a new output target.
|
DOMResult(Node node, String systemID) - Create a new output target with a DOM node.
|
Node | getNode() - Get the node that will contain the result DOM tree.
|
String | getSystemId() - Get the system identifier that was set with setSystemId.
|
void | setNode(Node node) - Set the node that will contain the result DOM tree.
|
void | setSystemId(String systemId) - Method setSystemId Set the systemID that may be used in association
with the node.
|
FEATURE
public static final String FEATURE
DOMResult
public DOMResult()
Zero-argument default constructor.
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.
DOMResult
public DOMResult(Node node,
String systemID)
Create a new output target with a DOM node. In practice,
the node should be a
Document
node,
a
DocumentFragment
node, or a
Element
node. In other words, a node
that accepts children.
node
- The DOM node that will contain the result tree.systemID
- The system identifier which may be used in association
with this node.
getNode
public Node getNode()
Get the node that will contain the result DOM tree.
If no node was set via setNode, the node will be
set by the transformation, and may be obtained from
this method once the transformation is complete.
- The node to which the transformation
will be appended.
getSystemId
public String getSystemId()
Get the system identifier that was set with setSystemId.
- getSystemId in interface Result
- The system identifier that was set with setSystemId, or null
if setSystemId was not called.
setNode
public void setNode(Node node)
Set the node that will contain the result DOM tree. In practice,
the node should be a
Document
node,
a
DocumentFragment
node, or a
Element
node. In other words, a node
that accepts children.
node
- The node to which the transformation
will be appended.
setSystemId
public void setSystemId(String systemId)
Method setSystemId Set the systemID that may be used in association
with the node.
- setSystemId in interface Result
systemId
- The system identifier as a URI string.
Copyright B) 2004 Apache XML Project. All Rights Reserved.