Home | History | Annotate | Download | only in dtm

Lines Matching refs:context

48    * By the nature of the stateless traversal, the context node can not be
55 * @param context The context node of this traversal. This is the point
59 public int first(int context)
61 return next(context, context);
65 * By the nature of the stateless traversal, the context node can not be
72 * @param context The context node of this traversal. This is the point
78 public int first(int context, int extendedTypeID)
80 return next(context, context, extendedTypeID);
86 * @param context The context node of this traversal. This is the point
90 * previous traversal step. For the first traversal step, context
92 * context is in the set, you must use the first() method instead.
97 public abstract int next(int context, int current);
103 * @param context The context node of this traversal. This is the point
107 * previous traversal step. For the first traversal step, context
109 * context is in the set, you must use the first() method instead.
115 public abstract int next(int context, int current, int extendedTypeID);