|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--antlr.ASTFactory
AST Support code shared by TreeParser and Parser. We use delegation to share code (and have only one bit of code to maintain) rather than subclassing or superclassing (forces AST support code to be loaded even when you don't want to do AST stuff). Typically, setASTNodeType is used to specify the type of node to create, but you can override create to make heterogeneous nodes etc...
Field Summary | |
protected java.lang.String |
theASTNodeType
Name of AST class to create during tree construction. |
protected java.lang.Class |
theASTNodeTypeClass
|
Constructor Summary | |
ASTFactory()
|
Method Summary | |
void |
addASTChild(ASTPair currentAST,
AST child)
Add a child to the current AST |
AST |
create()
Create a new empty AST node; if the user did not specify an AST node type, then create a default one: CommonAST. |
AST |
create(AST tr)
Create a new empty AST node; if the user did not specify an AST node type, then create a default one: CommonAST. |
AST |
create(int type)
|
AST |
create(int type,
java.lang.String txt)
|
AST |
create(Token tok)
|
AST |
dup(AST t)
Copy a single node. |
AST |
dupList(AST t)
Duplicate tree including siblings of root. |
AST |
dupTree(AST t)
Duplicate a tree, assuming this is a root node of a tree-- duplicate that node and what's below; ignore siblings of root node. |
AST |
make(AST[] nodes)
Make a tree from a list of nodes. |
AST |
make(ASTArray nodes)
Make a tree from a list of nodes, where the nodes are contained in an ASTArray object |
void |
makeASTRoot(ASTPair currentAST,
AST root)
Make an AST the root of current AST |
void |
setASTNodeType(java.lang.String t)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected java.lang.String theASTNodeType
protected java.lang.Class theASTNodeTypeClass
Constructor Detail |
public ASTFactory()
Method Detail |
public void addASTChild(ASTPair currentAST, AST child)
public AST create()
public AST create(int type)
public AST create(int type, java.lang.String txt)
public AST create(AST tr)
public AST create(Token tok)
public AST dup(AST t)
public AST dupList(AST t)
public AST dupTree(AST t)
public AST make(AST[] nodes)
public AST make(ASTArray nodes)
public void makeASTRoot(ASTPair currentAST, AST root)
public void setASTNodeType(java.lang.String t)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |