01: /* Generated By:JJTree: Do not edit this line. ASTKeyValuePair.java */
02: package org.codehaus.aspectwerkz.annotation.expression.ast;
03:
04: public class ASTKeyValuePair extends SimpleNode {
05: private String m_key;
06:
07: public ASTKeyValuePair(int id) {
08: super (id);
09: }
10:
11: public ASTKeyValuePair(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 setKey(String key) {
20: m_key = key;
21: }
22:
23: public String getKey() {
24: return m_key;
25: }
26: }
|