Home | History | Annotate | Download | only in dtm

Lines Matching refs:Axis

19  * $Id: Axis.java 468653 2006-10-28 07:07:05Z minchau $
30 public final class Axis
34 * The ancestor axis contains the ancestors of the context node;
36 * node and the parent's parent and so on; thus, the ancestor axis will
42 * the ancestor-or-self axis contains the context node and the ancestors of
43 * the context node; thus, the ancestor axis will always include the
49 * the attribute axis contains the attributes of the context node; the axis
54 /** The child axis contains the children of the context node. */
58 * The descendant axis contains the descendants of the context node;
60 * descendant axis never contains attribute or namespace nodes.
65 * The descendant-or-self axis contains the context node and the
71 * the following axis contains all nodes in the same document as the
78 * The following-sibling axis contains all the following siblings of the
80 * the following-sibling axis is empty.
85 * The namespace axis contains the namespace nodes of the context node; the
86 * axis will be empty unless the context node is an element.
91 * The namespace axis contains the namespace nodes of the context node; the
92 * axis will be empty unless the context node is an element.
97 * The parent axis contains the parent of the context node,
103 * The preceding axis contains all nodes in the same document as the context
110 * The preceding-sibling axis contains all the preceding siblings of the
112 * the preceding-sibling axis is empty.
116 /** The self axis contains just the context node itself. */
120 * A non-xpath axis, traversing the subtree including the subtree
126 * A non-xpath axis, traversing the the preceding and the ancestor nodes,
132 // All axis past this are absolute.
135 * A non-xpath axis, returns all nodes in the tree from and including the
141 * A non-xpath axis, returns all nodes that aren't namespaces or attributes,
147 * A non-xpath axis, returns all nodes that aren't namespaces or attributes,
153 * A non-xpath axis, returns root only.
158 * A non-xpath axis, for functions.
163 * A table to identify whether an axis is a reverse axis;
208 public static boolean isReverse(int axis){
209 return isReverse[axis];