KickJava   Java API By Example, From Geeks To Geeks.

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


1 /* Generated By:JJTree: Do not edit this line. ASTIdentifier.java */
2
3 package org.jboss.aop.annotation.ast;
4
5 public class ASTIdentifier extends ASTMemberValue {
6   public ASTIdentifier(int id) {
7     super(id);
8   }
9
10   public ASTIdentifier(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    String JavaDoc value;
21
22    public String JavaDoc getValue()
23    {
24       return value;
25    }
26
27    public void setValue(String JavaDoc value)
28    {
29       this.value = value;
30    }
31 }
32
Popular Tags