Methods Summary |
---|
public void | appendChild(org.w3c.dom.Node node)Method appendChild
if (this._allNodesMustHaveSameParent && this.getLength() > 0) {
if (this.item(0).getParentNode() != node.getParentNode()) {
throw new IllegalArgumentException("Nodes have not the same Parent");
}
}
nodes.add(node);
|
public int | getLength()Method getLength
return nodes.size();
|
public org.w3c.dom.Document | getOwnerDocument()
if (this.getLength() == 0) {
return null;
}
return XMLUtils.getOwnerDocument(this.item(0));
|
public org.w3c.dom.Node | item(int index)Method item
// if (log.isLoggable(java.util.logging.Level.FINE)) log.log(java.util.logging.Level.FINE, "item(" + index + ") of " + this.getLength() + " nodes");
return (Node) nodes.get(index);
|