01: /* Generated By:JJTree: Do not edit this line. ASTBoolean.java */
02: package org.codehaus.aspectwerkz.annotation.expression.ast;
03:
04: public class ASTBoolean extends SimpleNode {
05: private String m_value;
06:
07: public ASTBoolean(int id) {
08: super (id);
09: }
10:
11: public ASTBoolean(AnnotationParser p, int id) {
12: super (p, id);
13: }
14:
15: public Object jjtAccept(AnnotationParserVisitor visitor, Object data) {
16: return visitor.visit(this , data);
17: }
18:
19: public void setValue(String value) {
20: m_value = value;
21: }
22:
23: public String getValue() {
24: return m_value;
25: }
26: }
|