Class SimpleNode
- Object
-
- SimpleNode
-
- All Implemented Interfaces:
Node
public class SimpleNode extends Object implements Node
Redefines SimpleNode to allow access to additional information to theCQLCompiler
Note: set the option BUILD_NODE_FILES=false to avoid that javacc generates a new SimpleNode.- Since:
- Author:
- Mauricio Pazos (Axios Engineering)
-
-
Constructor Summary
Constructors Constructor Description SimpleNode(int i)
SimpleNode(CQLParser p, int i)
-
Method Summary
All Methods Instance Methods Concrete 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)
-
-
-
Constructor Detail
-
SimpleNode
public SimpleNode(int i)
-
SimpleNode
public SimpleNode(CQLParser p, int i)
-
-
Method Detail
-
jjtSetParent
public void jjtSetParent(Node n)
- Specified by:
jjtSetParent
in interfaceNode
-
jjtGetParent
public Node jjtGetParent()
- Specified by:
jjtGetParent
in interfaceNode
-
jjtAddChild
public void jjtAddChild(Node n, int i)
- Specified by:
jjtAddChild
in interfaceNode
-
jjtGetChild
public Node jjtGetChild(int i)
- Specified by:
jjtGetChild
in interfaceNode
-
jjtGetNumChildren
public int jjtGetNumChildren()
- Specified by:
jjtGetNumChildren
in interfaceNode
-
toString
public String toString()
-
-