Home | History | Annotate | Download | only in patterns

Lines Matching refs:Axis

23 import org.apache.xml.dtm.Axis;
43 /** The axis for this test. */
53 * @param axis The Axis for this test, one of of Axes.ANCESTORORSELF, etc.
56 public StepPattern(int whatToShow, String namespace, String name, int axis,
62 m_axis = axis;
70 * @param axis The Axis for this test, one of of Axes.ANCESTORORSELF, etc.
73 public StepPattern(int whatToShow, int axis, int axisForPredicate)
78 m_axis = axis;
435 dtm.getAxisTraverser(Axis.PRECEDINGSIBLING);
534 DTMAxisTraverser traverser = dtm.getAxisTraverser(Axis.CHILD);
797 buf.append(Axis.getNames(pat.m_axis));
915 * Set the axis that this step should follow.
918 * @param axis The Axis for this test, one of of Axes.ANCESTORORSELF, etc.
920 public void setAxis(int axis)
922 m_axis = axis;
926 * Get the axis that this step follows.
929 * @return The Axis for this test, one of of Axes.ANCESTORORSELF, etc.