Uses of Interface
org.apache.jdo.jdoql.tree.AscendingOrderingExpression

Packages that use AscendingOrderingExpression
org.apache.jdo.impl.jdoql.tree   
org.apache.jdo.jdoql.tree This package contains the query tree node interfaces, the node visitor interface and the tree walker. 
 

Uses of AscendingOrderingExpression in org.apache.jdo.impl.jdoql.tree
 

Classes in org.apache.jdo.impl.jdoql.tree that implement AscendingOrderingExpression
 class AscendingOrderingExpr
          This node represents an operator defining ascendent ordering of instances returned by a query execution.
 

Methods in org.apache.jdo.impl.jdoql.tree with parameters of type AscendingOrderingExpression
 void FilterExpressionDumper.arrive(AscendingOrderingExpression node)
          Ascending ordering expressions are dumped like Ascending(expression).
 

Uses of AscendingOrderingExpression in org.apache.jdo.jdoql.tree
 

Methods in org.apache.jdo.jdoql.tree with parameters of type AscendingOrderingExpression
 void NodeVisitor.arrive(AscendingOrderingExpression node)
          This method is called before walking any children of the argument node.
 java.lang.Object NodeVisitor.leave(AscendingOrderingExpression node, java.lang.Object[] results)
          This method is called after walking the children of the argument node.
 boolean NodeVisitor.walkNextChild(AscendingOrderingExpression node, java.lang.Object resultOfPreviousChild, int indexOfNextChild)
          This method is called before walking each child of the argument node.
 void AbstractNodeVisitor.arrive(AscendingOrderingExpression node)
          This method delegates to arrive casting the argument node to OrderingExpression.
 java.lang.Object AbstractNodeVisitor.leave(AscendingOrderingExpression node, java.lang.Object[] results)
          This method delegates to leave casting the argument node to OrderingExpression.
 boolean AbstractNodeVisitor.walkNextChild(AscendingOrderingExpression node, java.lang.Object resultOfPreviousChild, int indexOfNextChild)
          This method delegates to walkNextChild casting the argument node to OrderingExpression.