Class SimpleNode
java.lang.Object
org.apache.jackrabbit.spi.commons.query.xpath.SimpleNode
- All Implemented Interfaces:
Node
Implements a JavaCC Node interface.
This Class was initially created by JavaCC and then adapted for our needs.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionchildrenAccept(XPathVisitor visitor, Object data) Accept the visitor.voidvoiddump(String prefix, PrintStream ps) intgetId()getValue()jjtAccept(XPathVisitor visitor, Object data) Accept the visitor.voidjjtAddChild(Node n, int i) This method tells the node to add its argument to the node's list of children.voidjjtClose()This method is called after all the child nodes have been added.static NodejjtGetChild(int i) This method returns a child node.intReturn the number of children the node has.voidjjtOpen()This method is called after the node has been made the current node.voidjjtSetParent(Node n) This pair of methods are used to inform the node of its parent.voidvoidtoString()
-
Constructor Details
-
SimpleNode
public SimpleNode(int i) -
SimpleNode
-
-
Method Details
-
jjtCreate
-
jjtOpen
public void jjtOpen()Description copied from interface:NodeThis method is called after the node has been made the current node. It indicates that child nodes can now be added to it. -
jjtClose
public void jjtClose()Description copied from interface:NodeThis method is called after all the child nodes have been added. -
jjtSetParent
Description copied from interface:NodeThis pair of methods are used to inform the node of its parent.- Specified by:
jjtSetParentin interfaceNode
-
jjtGetParent
- Specified by:
jjtGetParentin interfaceNode
-
jjtAddChild
Description copied from interface:NodeThis method tells the node to add its argument to the node's list of children.- Specified by:
jjtAddChildin interfaceNode
-
jjtGetChild
Description copied from interface:NodeThis method returns a child node. The children are numbered from zero, left to right.- Specified by:
jjtGetChildin interfaceNode
-
jjtGetNumChildren
public int jjtGetNumChildren()Description copied from interface:NodeReturn the number of children the node has.- Specified by:
jjtGetNumChildrenin interfaceNode
-
jjtAccept
Accept the visitor. * -
childrenAccept
Accept the visitor. * -
toString
-
toString
-
dump
-
dump
-
processToken
-
printValue
-
getId
public int getId() -
getValue
-