Lines Matching refs:node

51  * A simple RTF is an RTF that has only one Text node. The Text node can be produced by a
55 * A SimpleResultTreeImpl has only two nodes, i.e. the ROOT node and its Text child. All DOM
57 * returns the value of the Text node. This class receives the character data from the
73 * it will also match the node type with the given type.
105 // Increase the node ID for down traversal. Also match the node type
122 // Decrease the node ID for up traversal.
145 // Increase the node ID by 1 if self is not included.
227 public DTMAxisIterator setStartNode(int node) { return this; }
238 // The root node id of the simple RTF
241 // The Text node id of the simple RTF (simple RTF has only one Text node).
253 // The String value of the Text node.
307 public DTMAxisIterator getChildren(final int node)
309 return new SimpleIterator().setStartNode(node);
362 public DTMAxisIterator getNthDescendant(int node, int n, boolean includeself)
379 public DTMAxisIterator orderNodes(DTMAxisIterator source, int node)
384 public String getNodeName(final int node)
386 if (getNodeIdent(node) == RTF_TEXT)
392 public String getNodeNameX(final int node)
397 public String getNamespaceName(final int node)
402 // Return the expanded type id of a given node
414 public int getNamespaceType(final int node)
439 public void copy(final int node, SerializationHandler handler)
442 characters(node, handler);
448 int node;
449 while ((node = nodes.next()) != DTM.NULL)
451 copy(node, handler);
455 public String shallowCopy(final int node, SerializationHandler handler)
458 characters(node, handler);
475 * Dispatch the character content of a node to an output handler.
480 public void characters(final int node, SerializationHandler handler)
483 int nodeID = getNodeIdent(node);
531 public String getLanguage(int node)
541 public String getDocumentURI(int node)
554 public boolean isElement(final int node)
559 public boolean isAttribute(final int node)
564 public String lookupNamespace(int node, String prefix)
571 * Return the node identity from a node handle.
579 * Return the node handle from a node identity.
601 public int getNSType(int node)
1004 public SourceLocator getSourceLocatorFor(int node)