Home
last modified time | relevance | path

Searched refs:newChild (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Mms/src/com/android/mms/dom/
DNodeImpl.java54 public Node appendChild(Node newChild) throws DOMException { in appendChild() argument
55 ((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() argument
180 public Node replaceChild(Node newChild, Node oldChild) throws DOMException { in replaceChild() argument
184 mChildNodes.remove(newChild); in replaceChild()
188 mChildNodes.setElementAt(newChild, mChildNodes.indexOf(oldChild)); in replaceChild()
189 ((NodeImpl)newChild).setParentNode(this); in replaceChild()