org.jastadd.jrag.AST.ASTClassDeclaration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jastadd Show documentation
Show all versions of jastadd Show documentation
A metacompilation framework for Java using attribute grammars.
/* Generated By:JJTree: Do not edit this line. ASTClassDeclaration.java */
package org.jastadd.jrag.AST;
public class ASTClassDeclaration extends SimpleNode {
public ASTClassDeclaration(int id) {
super(id);
}
public ASTClassDeclaration(JragParser p, int id) {
super(p, id);
}
/** Accept the visitor. **/
public Object jjtAccept(JragParserVisitor visitor, Object data) {
return visitor.visit(this, data);
}
}