1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 /* Generated By:JJTree: Do not edit this line. ASTAnnotationMethodDeclaration.java Version 4.1 */ 5 /* JavaCCOptions:MULTI=true,NODE_USES_PARSER=true,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY= */ 6 package net.sourceforge.pmd.lang.java.ast; 7 8 public class ASTAnnotationMethodDeclaration extends AbstractJavaAccessNode { 9 public ASTAnnotationMethodDeclaration(int id) { 10 super(id); 11 } 12 13 public ASTAnnotationMethodDeclaration(JavaParser p, int id) { 14 super(p, id); 15 } 16 17 18 /** Accept the visitor. **/ 19 public Object jjtAccept(JavaParserVisitor visitor, Object data) { 20 return visitor.visit(this, data); 21 } 22 } 23 /* JavaCC - OriginalChecksum=f6dd440446f8aa5c9c191ae760080ee0 (do not edit this line) */