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