javacc-7.0.1.examples.JJTreeExamples.java.ASTMyOtherID Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javacc Show documentation
Show all versions of javacc Show documentation
JavaCC is a parser/scanner generator for Java.
public
class ASTMyOtherID extends SimpleNode {
private String name;
public ASTMyOtherID(int id) {
super(id);
}
public ASTMyOtherID(Eg4 p, int id) {
super(p, id);
}
/**
* Set the name.
* @param n the name
*/
public void setName(String n) {
name = n;
}
/**
* {@inheritDoc}
* @see org.javacc.examples.jjtree.eg2.SimpleNode#toString()
*/
public String toString() {
return "Identifier: " + name;
}
/** Accept the visitor. **/
public Object jjtAccept(Eg4Visitor visitor, Object data) {
return visitor.visit(this, data);
}
}