Interface Node
-
- All Known Implementing Classes:
SimpleNode
public interface Node
This interface extends the functionalities provided by the default implementation generated by javacc.- Since:
- 2.5
- Author:
- Mauricio Pazos (Axios Engineering)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dispose()
void
dump(String prefix)
Token
getToken()
int
getType()
void
jjtAddChild(Node n, int i)
void
jjtClose()
Node
jjtGetChild(int i)
int
jjtGetNumChildren()
Node
jjtGetParent()
void
jjtOpen()
void
jjtSetParent(Node n)
String
toString()
String
toString(String prefix)
-
-
-
Method Detail
-
jjtOpen
void jjtOpen()
-
jjtClose
void jjtClose()
-
jjtSetParent
void jjtSetParent(Node n)
-
jjtGetParent
Node jjtGetParent()
-
jjtAddChild
void jjtAddChild(Node n, int i)
-
jjtGetChild
Node jjtGetChild(int i)
-
jjtGetNumChildren
int jjtGetNumChildren()
-
dump
void dump(String prefix)
-
getType
int getType()
-
dispose
void dispose()
-
getToken
Token getToken()
-
-