[all packages]
[package ]
[class hierarchy]
[index]
java.lang.Object
|
+----Printable
|
+----PremonJJTNode
public abstract class PremonJJTNode extends Printable implements Node
A node in the sugared abstract syntax tree.
This AST representation is used by JJTree/JavaCC. See the JavaCC documentation for more details.

PremonJJTNode(int)

children

childCat(int)
ith child of class PremonJJTCat.
childCon(int)
ith child of class PremonJJTCon.
childDec(int)
ith child of class PremonJJTDec.
childExp(int)
ith child of class PremonJJTExp.
childId(int)
ith child of class PremonJJTId.
childPat(int)
ith child of class PremonJJTPat.
childType(int)
ith child of class PremonJJTType.
jjtAddChild(Node, int)
ith child.
jjtClose()
jjtGetChild(int)
ith child.
jjtGetNumChildren()
jjtGetParent()
jjtOpen()
jjtSetParent(Node)

PremonJJTNodepublic PremonJJTNode(int i);

childrenprotected PremonJJTNode[] children;

jjtOpenpublic void jjtOpen();
public void jjtClose();
public void jjtSetParent(Node n);
public Node jjtGetParent();
public void jjtAddChild(Node n,
int i);
ith child.public Node jjtGetChild(int i);
ith child.public int jjtGetNumChildren();
public PremonJJTCat childCat(int i);
ith child of class PremonJJTCat.public PremonJJTExp childExp(int i);
ith child of class PremonJJTExp.public PremonJJTPat childPat(int i);
ith child of class PremonJJTPat.public PremonJJTType childType(int i);
ith child of class PremonJJTType.public PremonJJTDec childDec(int i);
ith child of class PremonJJTDec.public PremonJJTCon childCon(int i);
ith child of class PremonJJTCon.public PremonJJTId childId(int i);
ith child of class PremonJJTId.
[all packages]
[package ]
[class hierarchy]
[index]