Searched refs:newChild (Results 1 – 1 of 1) sorted by relevance
54 public Node appendChild(Node newChild) throws DOMException { in appendChild() argument55 ((NodeImpl)newChild).setParentNode(this); in appendChild()56 mChildNodes.remove(newChild); in appendChild()57 mChildNodes.add(newChild); in appendChild()58 return newChild; in appendChild()156 public Node insertBefore(Node newChild, Node refChild) throws DOMException { in insertBefore() argument180 public Node replaceChild(Node newChild, Node oldChild) throws DOMException { in replaceChild() argument184 mChildNodes.remove(newChild); in replaceChild()188 mChildNodes.setElementAt(newChild, mChildNodes.indexOf(oldChild)); in replaceChild()189 ((NodeImpl)newChild).setParentNode(this); in replaceChild()