Class SimpleNode
java.lang.Object
org.apache.cayenne.template.parser.SimpleNode
- All Implemented Interfaces:
Node
- Direct Known Subclasses:
ASTBlock
,ASTExpression
,ASTIfElse
,IdentifierNode
,ScalarNode
- Since:
- 4.1
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Override this method if you want to customize how the node dumps out its children.void
jjtAddChild
(Node n, int i) This method tells the node to add its argument to the node's list of children.jjtGetChild
(int i) This method returns a child node.int
Return the number of children the node has.void
jjtSetParent
(Node n) This pair of methods are used to inform the node of its parent.toString()
-
Field Details
-
parent
-
children
-
id
protected int id
-
-
Constructor Details
-
SimpleNode
public SimpleNode(int i)
-
-
Method Details
-
jjtSetParent
Description copied from interface:Node
This pair of methods are used to inform the node of its parent.- Specified by:
jjtSetParent
in interfaceNode
-
jjtGetParent
- Specified by:
jjtGetParent
in interfaceNode
-
jjtAddChild
Description copied from interface:Node
This method tells the node to add its argument to the node's list of children.- Specified by:
jjtAddChild
in interfaceNode
-
jjtGetChild
Description copied from interface:Node
This method returns a child node. The children are numbered from zero, left to right.- Specified by:
jjtGetChild
in interfaceNode
-
jjtGetNumChildren
public int jjtGetNumChildren()Description copied from interface:Node
Return the number of children the node has.- Specified by:
jjtGetNumChildren
in interfaceNode
-
toString
-
toString
-
dump
Override this method if you want to customize how the node dumps out its children.
-