Java org.w3c.dom DocumentFragment fields, constructors, methods, implement or subclass

Example usage for Java org.w3c.dom DocumentFragment fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.w3c.dom DocumentFragment.

The text is from its open source code.

Method

NodeappendChild(Node newChild)
Adds the node newChild to the end of the list of children of this node.
NodeListgetChildNodes()
A NodeList that contains all children of this node.
ClassgetClass()
Returns the runtime class of this Object .
NodegetFirstChild()
The first child of this node.
DocumentgetOwnerDocument()
The Document object associated with this node.
booleanhasChildNodes()
Returns whether this node has any children.
NodeinsertBefore(Node newChild, Node refChild)
Inserts the node newChild before the existing child node refChild.
NoderemoveChild(Node oldChild)
Removes the child node indicated by oldChild from the list of children, and returns it.