Searched defs:nextSibling (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/javax/xml/transform/dom/
H A DDOMResult.java100 * <p>In practice, <code>node</code> and <code>nextSibling</code> should be
106 * <p>Use <code>nextSibling</code> to specify the child node
108 * If <code>nextSibling</code> is not a sibling of <code>node</code>,
110 * If <code>node</code> is <code>null</code> and <code>nextSibling</code> is not <code>null</code>,
112 * If <code>nextSibling</code> is <code>null</code>,
119 * @param nextSibling The child node where the result nodes should be inserted before.
121 * @throws IllegalArgumentException If <code>nextSibling</code> is not a sibling of <code>node</code>.
122 * @throws IllegalArgumentException If <code>node</code> is <code>null</code> and <code>nextSibling</code> is not <code>null</code>.
126 public DOMResult(Node node, Node nextSibling) { argument
129 if (nextSibling !
175 DOMResult(Node node, Node nextSibling, String systemId) argument
271 setNextSibling(Node nextSibling) argument
344 private Node nextSibling = null; field in class:DOMResult
[all...]

Completed in 62 milliseconds