| com.flexive.shared.search.query.QueryNodeVisitor
All known Subclasses: com.flexive.shared.search.query.MaxNodeIdVisitor,
QueryNodeVisitor | public interface QueryNodeVisitor (Code) | | A simple query node visitor, useful for examining a query tree.
author: Daniel Lichtenberger (daniel.lichtenberger@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at) |
setCurrentParent | void setCurrentParent(QueryOperatorNode operatorNode)(Code) | | Sets the parent node of the visited node.
Parameters: operatorNode - the parent node of the next visited node |
visit | void visit(QueryOperatorNode operatorNode)(Code) | | Visit an operator node, i.e. a node in the tree with
a query operator (usually AND/OR).
Parameters: operatorNode - the operator node visited |
visit | void visit(QueryValueNode valueNode)(Code) | | Visit a value node, i.e. a leaf node with some kind of
value attached.
Parameters: valueNode - the value node visited |
|
|