H A D | DTMDefaultBaseTraversers.java | 204 * Traverse to the next node after the current node. 207 * @param current The current node of the iteration. 211 public int next(int context, int current) in next() argument 213 return getParent(current); in next() 217 * Traverse to the next node after the current node that is matched 221 * @param current The current node of the iteration. 226 public int next(int context, int current, int expandedTypeID) in next() argument 229 current = makeNodeIdentity(current); in next() 231 while (DTM.NULL != (current = m_parent.elementAt(current))) in next() 233 if (m_exptype.elementAt(current) == expandedTypeID) in next() [all …]
|