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 SummaryConstructors Constructor Description SimpleNode(int i)
- 
Method SummaryModifier and Type Method Description voiddump(String prefix)Override this method if you want to customize how the node dumps out its children.voidjjtAddChild(Node n, int i)This method tells the node to add its argument to the node's list of children.NodejjtGetChild(int i)This method returns a child node.intjjtGetNumChildren()Return the number of children the node has.NodejjtGetParent()voidjjtSetParent(Node n)This pair of methods are used to inform the node of its parent.StringtoString()StringtoString(String prefix)
- 
Field Details- 
parent
- 
children
- 
idprotected int id
 
- 
- 
Constructor Details- 
SimpleNodepublic SimpleNode(int i)
 
- 
- 
Method Details- 
jjtSetParentDescription copied from interface:NodeThis pair of methods are used to inform the node of its parent.- Specified by:
- jjtSetParentin interface- Node
 
- 
jjtGetParent- Specified by:
- jjtGetParentin interface- Node
 
- 
jjtAddChildDescription copied from interface:NodeThis method tells the node to add its argument to the node's list of children.- Specified by:
- jjtAddChildin interface- Node
 
- 
jjtGetChildDescription copied from interface:NodeThis method returns a child node. The children are numbered from zero, left to right.- Specified by:
- jjtGetChildin interface- Node
 
- 
jjtGetNumChildrenpublic int jjtGetNumChildren()Description copied from interface:NodeReturn the number of children the node has.- Specified by:
- jjtGetNumChildrenin interface- Node
 
- 
toString
- 
toString
- 
dumpOverride this method if you want to customize how the node dumps out its children.
 
-