Lines Matching refs:node

58  * Text node. But it can also be a DOM tree. This kind of RTF cannot be modelled by
155 public DTMAxisIterator getChildren(final int node)
158 return _dom.getChildren(node);
161 return super.getChildren(node);
195 public DTMAxisIterator getNthDescendant(int node, int n, boolean includeself)
198 return _dom.getNthDescendant(node, n, includeself);
201 return super.getNthDescendant(node, n, includeself);
226 public DTMAxisIterator orderNodes(DTMAxisIterator source, int node)
229 return _dom.orderNodes(source, node);
232 return super.orderNodes(source, node);
236 public String getNodeName(final int node)
239 return _dom.getNodeName(node);
242 return super.getNodeName(node);
246 public String getNodeNameX(final int node)
249 return _dom.getNodeNameX(node);
252 return super.getNodeNameX(node);
256 public String getNamespaceName(final int node)
259 return _dom.getNamespaceName(node);
262 return super.getNamespaceName(node);
266 // Return the expanded type id of a given node
277 public int getNamespaceType(final int node)
280 return _dom.getNamespaceType(node);
283 return super.getNamespaceType(node);
317 public void copy(final int node, SerializationHandler handler)
321 _dom.copy(node, handler);
324 super.copy(node, handler);
339 public String shallowCopy(final int node, SerializationHandler handler)
343 return _dom.shallowCopy(node, handler);
346 return super.shallowCopy(node, handler);
361 * Dispatch the character content of a node to an output handler.
366 public void characters(final int node, SerializationHandler handler)
370 _dom.characters(node, handler);
373 super.characters(node, handler);
417 public String getLanguage(int node)
420 return _dom.getLanguage(node);
423 return super.getLanguage(node);
437 public String getDocumentURI(int node)
440 return _dom.getDocumentURI(node);
467 public boolean isElement(final int node)
470 return _dom.isElement(node);
473 return super.isElement(node);
477 public boolean isAttribute(final int node)
480 return _dom.isAttribute(node);
483 return super.isAttribute(node);
487 public String lookupNamespace(int node, String prefix)
491 return _dom.lookupNamespace(node, prefix);
494 return super.lookupNamespace(node, prefix);
499 * Return the node identity from a node handle.
512 * Return the node handle from a node identity.
539 public int getNSType(int node)
542 return _dom.getNSType(node);
545 return super.getNSType(node);
1314 public SourceLocator getSourceLocatorFor(int node)
1317 return _dom.getSourceLocatorFor(node);
1320 return super.getSourceLocatorFor(node);