1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
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);
}
}
|