Uses of Interface
org.xmloperator.lambda.net.model.Walk

Packages that use Walk
org.xmloperator.lambda.net.model   
 

Uses of Walk in org.xmloperator.lambda.net.model
 

Methods in org.xmloperator.lambda.net.model that return Walk
 Walk WalkStack.pop()
          Pops a Walk from this stack.
 Walk WalkStack.top()
          Returns the Walk at the top of this stack or null if it is empty.
 Walk WalkStack.getFromTop(int index)
          Return the Walk at a given top relative index in the stack.
 Walk WalkStack.removeFromTop(int index)
          Removes and returns the Walk at a given top relative index in the stack.
 Walk OperatorFactory.createWalk(int bindIndex)
          Creates and returns a new Walk.
 

Methods in org.xmloperator.lambda.net.model with parameters of type Walk
 void WalkStack.push(Walk walk)
          Pushes a Walk on this stack.
 void WalkStack.insertFromTop(int index, Walk walk)
          Inserts a Walk in this stack at a top relative index.