Lines Matching refs:Node

23 import org.w3c.dom.Node;
71 public DOMResult(Node node) {
91 public DOMResult(Node node, String systemId) {
113 * then the behavior is the same as calling {@link #DOMResult(Node node)},
126 public DOMResult(Node node, Node nextSibling) {
136 if ((node.compareDocumentPosition(nextSibling)&Node.DOCUMENT_POSITION_CONTAINED_BY)==0) {
163 * then the behavior is the same as calling {@link #DOMResult(Node node, String systemId)},
175 public DOMResult(Node node, Node nextSibling, String systemId) {
185 if ((node.compareDocumentPosition(nextSibling)&Node.DOCUMENT_POSITION_CONTAINED_BY)==0) {
216 public void setNode(Node node) {
225 if ((node.compareDocumentPosition(nextSibling)&Node.DOCUMENT_POSITION_CONTAINED_BY)==0) {
237 * {@link #DOMResult(Node node)},
238 * {@link #DOMResult(Node node, String systeId)},
239 * {@link #DOMResult(Node node, Node nextSibling)},
240 * {@link #DOMResult(Node node, Node nextSibling, String systemId)} or
241 * {@link #setNode(Node node)},
247 public Node getNode() {
261 * then the behavior is the same as calling {@link #DOMResult(Node node)},
271 public void setNextSibling(Node nextSibling) {
281 if ((node.compareDocumentPosition(nextSibling)&Node.DOCUMENT_POSITION_CONTAINED_BY)==0) {
293 * {@link #DOMResult(Node node, Node nextSibling)},
294 * {@link #DOMResult(Node node, Node nextSibling, String systemId)} or
295 * {@link #setNextSibling(Node nextSibling)},
302 public Node getNextSibling() {
319 * {@link #DOMResult(Node node, String systemId)},
320 * {@link #DOMResult(Node node, Node nextSibling, String systemId)} or
337 private Node node = null;
344 private Node nextSibling = null;