View Javadoc

1   /* Generated By:JJTree: Do not edit this line. ASTSingleMemberAnnotation.java */
2   
3   package net.sourceforge.pmd.ast;
4   
5   
6   public class ASTSingleMemberAnnotation extends SimpleJavaNode {
7       public ASTSingleMemberAnnotation(int id) {
8           super(id);
9       }
10  
11      public ASTSingleMemberAnnotation(JavaParser p, int id) {
12          super(p, id);
13      }
14  
15      /***
16       * Accept the visitor. *
17       */
18      public Object jjtAccept(JavaParserVisitor visitor, Object data) {
19          return visitor.visit(this, data);
20      }
21  }