Java javax.xml.transform.dom DOMResult fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.transform.dom DOMResult fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.transform.dom DOMResult.

The text is from its open source code.

Field

StringFEATURE
If javax.xml.transform.TransformerFactory#getFeature returns true when passed this value as an argument, the Transformer supports Result output of this type.

Constructor

DOMResult()
Zero-argument default constructor.
DOMResult(Node node)
Use a DOM node to create a new output target.

Method

NodegetNextSibling()
Get the child node before which the result nodes will be inserted.
NodegetNode()
Get the node that will contain the result DOM tree.
StringgetSystemId()
Get the System Identifier.
voidsetNode(Node node)
Set the node that will contain the result DOM tree.
voidsetSystemId(String systemId)
Set the systemId that may be used in association with the node.