|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Node in myparser |
Classes in myparser that implement Node | |
class |
ASTCase
|
class |
ASTComma
|
class |
ASTEmpty
|
class |
ASTFloat
|
class |
ASTIdentifier
|
class |
ASTInteger
|
class |
ASTLabel
|
class |
ASTOperator
|
class |
ASTPar
|
class |
ASTStart
|
class |
ASTString
|
class |
ASTSwitchCase
|
class |
ASTTag
|
class |
ASTTypeDecl
|
class |
SimpleNode
|
Methods in myparser that return Node | |
Node |
SimpleNode.jjtGetParent()
|
Node |
SimpleNode.jjtGetChild(int i)
|
Node |
Node.jjtGetParent()
|
Node |
Node.jjtGetChild(int i)
This method returns a child node. |
Methods in myparser with parameters of type Node | |
void |
SimpleNode.jjtSetParent(Node n)
|
void |
SimpleNode.jjtAddChild(Node n,
int i)
|
void |
Node.jjtSetParent(Node n)
This pair of methods are used to inform the node of its parent. |
void |
Node.jjtAddChild(Node n,
int i)
This method tells the node to add its argument to the node's list of children. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |