Searched refs:m_nextSibling (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DDOMBuilder.java61 protected Node m_nextSibling = null; field in class:DOMBuilder
145 m_nextSibling = nextSibling;
155 return m_nextSibling;
180 if (currentNode == m_root && m_nextSibling != null)
181 currentNode.insertBefore(newNode, m_nextSibling);
189 if (m_nextSibling != null)
190 m_docFrag.insertBefore(newNode, m_nextSibling);
226 if (m_nextSibling != null)
227 m_doc.insertBefore(newNode, m_nextSibling);

Completed in 31 milliseconds