org.apache.xerces.impl.xpath
Class XPath.Step

java.lang.Object
  extended by org.apache.xerces.impl.xpath.XPath.Step
All Implemented Interfaces:
java.lang.Cloneable
Enclosing class:
XPath

public static class XPath.Step
extends java.lang.Object
implements java.lang.Cloneable

A location path step comprised of an axis and node test.

Author:
Andy Clark, IBM

Field Summary
 XPath.Axis axis
          Axis.
 XPath.NodeTest nodeTest
          Node test.
 
Constructor Summary
XPath.Step(XPath.Axis axis, XPath.NodeTest nodeTest)
          Constructs a step from an axis and node test.
 
Method Summary
 java.lang.Object clone()
          Returns a clone of this object.
 java.lang.String toString()
          Returns a string representation of this object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

axis

public final XPath.Axis axis
Axis.


nodeTest

public final XPath.NodeTest nodeTest
Node test.

Constructor Detail

XPath.Step

public XPath.Step(XPath.Axis axis,
                  XPath.NodeTest nodeTest)
Constructs a step from an axis and node test.

Method Detail

toString

public java.lang.String toString()
Returns a string representation of this object.

Overrides:
toString in class java.lang.Object

clone

public java.lang.Object clone()
Returns a clone of this object.

Overrides:
clone in class java.lang.Object