KickJava   Java API By Example, From Geeks To Geeks.

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


1 /* Generated By:JJTree: Do not edit this line. ASTString.java */
2 package org.codehaus.aspectwerkz.annotation.expression.ast;
3
4 public class ASTString extends SimpleNode {
5     private String JavaDoc m_value;
6
7     public ASTString(int id) {
8         super(id);
9     }
10
11     public ASTString(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 void setValue(String JavaDoc value) {
20         m_value = value;
21     }
22
23     public String JavaDoc getValue() {
24         return m_value;
25     }
26 }
Popular Tags