01: /* Generated By:JJTree: Do not edit this line. ASTAnnotation.java */
02: package net.sourceforge.pmd.ast;
03:
04: public class ASTAnnotation extends SimpleJavaNode {
05: public ASTAnnotation(int id) {
06: super (id);
07: }
08:
09: public ASTAnnotation(JavaParser p, int id) {
10: super (p, id);
11: }
12:
13: /**
14: * Accept the visitor. *
15: */
16: public Object jjtAccept(JavaParserVisitor visitor, Object data) {
17: return visitor.visit(this, data);
18: }
19: }
|