KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > codehaus > aspectwerkz > annotation > expression > ast > ASTInteger


1 /* Generated By:JJTree: Do not edit this line. ASTInteger.java */
2 package org.codehaus.aspectwerkz.annotation.expression.ast;
3
4 public class ASTInteger extends SimpleNode {
5     private String JavaDoc m_value;
6
7     public ASTInteger(int id) {
8         super(id);
9     }
10
11     public ASTInteger(AnnotationParser p, int id) {
12         super(p, id);
13     }
14
15     public Object JavaDoc jjtAccept(AnnotationParserVisitor visitor, Object JavaDoc data) {
16         return visitor.visit(this, data);
17     }
18
19     public String JavaDoc getValue() {
20         return m_value;
21     }
22
23     public void setValue(String JavaDoc value) {
24         m_value = value;
25     }
26 }
Popular Tags