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

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/utils/
H A DDOMBuilder.java60 protected Node m_nextSibling = null; field in class:DOMBuilder
144 m_nextSibling = nextSibling;
154 return m_nextSibling;
179 if (currentNode == m_root && m_nextSibling != null)
180 currentNode.insertBefore(newNode, m_nextSibling);
188 if (m_nextSibling != null)
189 m_docFrag.insertBefore(newNode, m_nextSibling);
225 if (m_nextSibling != null)
226 m_doc.insertBefore(newNode, m_nextSibling);

Completed in 36 milliseconds