Lines Matching refs:node

191    * The root node of the TreeWalker, as specified in setRoot(int root).
192 * Note that this may actually be below the current node.
194 * @return The context node of the step.
213 * Set the root node of the TreeWalker.
216 * @param root The context node of this step.
239 * The node at which the TreeWalker is currently positioned.
241 * the current node to no longer be accepted by the TreeWalker's
242 * associated filter. currentNode may also be explicitly set to any node,
243 * whether or not it is within the subtree specified by the root node or
249 * @return The node at which the TreeWalker is currently positioned, only null
304 * This is simply a way to bottle-neck the return of the next node, for
318 * Get the next node in document order on the axes.
320 * @return the next node in document order on the axes, or null.
332 // I shouldn't have to do this the check for current node, I think.
347 * Moves the <code>TreeWalker</code> to the next visible node in document
348 * order relative to the current node, and returns the new node. If the
349 * current node has no next node, or if the search for nextNode attempts
350 * to step upward from the TreeWalker's root node, returns
351 * <code>null</code> , and retains the current node.
352 * @return The new node, or <code>null</code> if the current node has no
353 * next node in the TreeWalker's logical view.
407 * Get the index of the last node that can be itterated to.
412 * @return the index of the last node that can be itterated to.
465 * Never, ever, access this value without going through getDTM(int node).
484 public DTM getDTM(int node)
487 return wi().getXPathContext().getDTM(node);
567 * The root node of the TreeWalker, as specified when it was created.
572 * The node at which the TreeWalker is currently positioned.