class DocumentFragmentNodeList
extends java.lang.Object
implements org.w3c.dom.NodeList
| Modifier and Type | Field and Description |
|---|---|
private org.w3c.dom.DocumentFragment |
fragment |
private java.util.List<org.w3c.dom.Node> |
nodes |
| Constructor and Description |
|---|
DocumentFragmentNodeList(org.w3c.dom.Node parentNode)
Construct a list of the children of a given node.
|
DocumentFragmentNodeList(org.w3c.dom.Node parentNode,
java.lang.String filterUri,
java.lang.String filterLocal)
Create a list of the children of a given node that are elements with a specified qualified name.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getLength() |
org.w3c.dom.Node |
item(int index) |
private java.util.List<org.w3c.dom.Node> nodes
private org.w3c.dom.DocumentFragment fragment
DocumentFragmentNodeList(org.w3c.dom.Node parentNode)
parentNode - node from which to copy children.DocumentFragmentNodeList(org.w3c.dom.Node parentNode,
java.lang.String filterUri,
java.lang.String filterLocal)
parentNode - node from which to copy children.filterUri - Namespace URI of children to copy.filterLocal - Local name of children to copy.