KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > aop > annotation > ast > ASTAnnotation


1 /* Generated By:JJTree: Do not edit this line. ASTAnnotation.java */
2
3 package org.jboss.aop.annotation.ast;
4
5 public class ASTAnnotation extends ASTMemberValue {
6   public ASTAnnotation(int id) {
7     super(id);
8   }
9
10   public ASTAnnotation(AnnotationParser p, int id) {
11     super(p, id);
12   }
13
14
15   /** Accept the visitor. **/
16   public Object JavaDoc jjtAccept(AnnotationParserVisitor visitor, Object JavaDoc data) {
17     return visitor.visit(this, data);
18   }
19
20    private String JavaDoc identifier;
21
22    public String JavaDoc getIdentifier()
23    {
24       return identifier;
25    }
26
27    public void setIdentifier(String JavaDoc identifier)
28    {
29       this.identifier = identifier;
30    }
31 }
32
Popular Tags