1 /* Generated By:JJTree: Do not edit this line. ASTAnnotation.java */ 2 package org.codehaus.aspectwerkz.annotation.expression.ast; 3 4 public class ASTAnnotation extends SimpleNode { 5 public ASTAnnotation(int id) { 6 super(id); 7 } 8 9 public ASTAnnotation(AnnotationParser p, int id) { 10 super(p, id); 11 } 12 13 /*** 14 * Accept the visitor. * 15 */ 16 public Object jjtAccept(AnnotationParserVisitor visitor, Object data) { 17 return visitor.visit(this, data); 18 } 19 }