KickJava   Java API By Example, From Geeks To Geeks.

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


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