Uses of Interface
org.jaxen.expr.Step

Packages that use Step
org.jaxen.expr Interfaces and default implementations for XPath expression components. 
org.jaxen.pattern Defines XSLT Pattern objects. 
 

Uses of Step in org.jaxen.expr
 

Subinterfaces of Step in org.jaxen.expr
 interface AllNodeStep
           
 interface CommentNodeStep
           
 interface NameStep
           
 interface ProcessingInstructionNodeStep
           
 interface TextNodeStep
           
 

Classes in org.jaxen.expr that implement Step
 class DefaultAllNodeStep
           
 class DefaultCommentNodeStep
           
 class DefaultNameStep
          Expression object that represents any flavor of name-test steps within an XPath.
 class DefaultProcessingInstructionNodeStep
           
 class DefaultStep
           
 class DefaultTextNodeStep
           
 

Methods in org.jaxen.expr that return Step
 Step DefaultXPathFactory.createNameStep(int axis, java.lang.String prefix, java.lang.String localName)
           
 Step DefaultXPathFactory.createTextNodeStep(int axis)
           
 Step DefaultXPathFactory.createCommentNodeStep(int axis)
           
 Step DefaultXPathFactory.createAllNodeStep(int axis)
           
 Step DefaultXPathFactory.createProcessingInstructionNodeStep(int axis, java.lang.String piName)
           
 Step XPathFactory.createNameStep(int axis, java.lang.String prefix, java.lang.String localName)
           
 Step XPathFactory.createAllNodeStep(int axis)
           
 Step XPathFactory.createCommentNodeStep(int axis)
           
 Step XPathFactory.createTextNodeStep(int axis)
           
 Step XPathFactory.createProcessingInstructionNodeStep(int axis, java.lang.String name)
           
 

Methods in org.jaxen.expr with parameters of type Step
 void DefaultLocationPath.addStep(Step step)
           
 void LocationPath.addStep(Step step)
           
 

Uses of Step in org.jaxen.pattern
 

Methods in org.jaxen.pattern with parameters of type Step
protected static LocationPathPattern PatternParser.convertStep(LocationPathPattern path, Step step)
           
protected static boolean PatternParser.navigationStep(Step step)