Home | History | Annotate | Download | only in utils

Lines Matching refs:newNode

173    * @param newNode New node to append
175 protected void append(Node newNode) throws org.xml.sax.SAXException
183 currentNode.insertBefore(newNode, m_nextSibling);
185 currentNode.appendChild(newNode);
187 // System.out.println(newNode.getNodeName());
192 m_docFrag.insertBefore(newNode, m_nextSibling);
194 m_docFrag.appendChild(newNode);
199 short type = newNode.getNodeType();
203 String data = newNode.getNodeValue();
229 m_doc.insertBefore(newNode, m_nextSibling);
231 m_doc.appendChild(newNode);