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

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

Introduction

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

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 Source input of this type.

Constructor

DOMSource(Node n)
Create a new input source with a DOM node.
DOMSource(Node node, String systemID)
Create a new input source with a DOM node, and with the system ID also passed in as the base URI.
DOMSource()

Zero-argument default constructor.

Method

NodegetNode()
Get the node that represents a Source DOM tree.
StringgetSystemId()
Get the base ID (URL or system ID) from where URLs will be resolved.
voidsetNode(Node node)
Set the node that will represents a Source DOM tree.
voidsetSystemId(String systemID)
Set the base ID (URL or system ID) from where URLs will be resolved.