Class SimpleNode
java.lang.Object
org.apache.cayenne.template.parser.SimpleNode
- All Implemented Interfaces:
Node
- Direct Known Subclasses:
ASTBlock
,ASTExpression
,ASTIfElse
,IdentifierNode
,ScalarNode
public abstract class SimpleNode extends Object implements Node
- Since:
- 4.1
-
Field Summary
-
Constructor Summary
Constructors Constructor Description SimpleNode(int i)
-
Method Summary
Modifier and Type Method Description void
dump(String prefix)
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.Node
jjtGetChild(int i)
This method returns a child node.int
jjtGetNumChildren()
Return the number of children the node has.Node
jjtGetParent()
void
jjtSetParent(Node n)
This pair of methods are used to inform the node of its parent.String
toString()
String
toString(String prefix)
-
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.
-