1 2 3 package net.sourceforge.pmd.ast; 4 5 public class ASTSingleMemberAnnotation extends SimpleJavaNode { 6 public ASTSingleMemberAnnotation(int id) { 7 super(id); 8 } 9 10 public ASTSingleMemberAnnotation(JavaParser p, int id) { 11 super(p, id); 12 } 13 14 17 public Object jjtAccept(JavaParserVisitor visitor, Object data) { 18 return visitor.visit(this, data); 19 } 20 } 21 | Popular Tags |