Methods Summary |
---|
public java.lang.String | getText()Get the token text for this node
return text;
|
public int | getType()Get the token type for this node
return ttype;
|
public void | initialize(int t, java.lang.String txt)
setType(t);
setText(txt);
|
public void | initialize(persistence.antlr.collections.AST t)
setText(t.getText());
setType(t.getType());
|
public void | initialize(persistence.antlr.Token tok)
setText(tok.getText());
setType(tok.getType());
|
public void | setText(java.lang.String text_)Set the token text for this node
text = text_;
|
public void | setType(int ttype_)Set the token type for this node
ttype = ttype_;
|