1
2 package org.codehaus.aspectwerkz.annotation.expression.ast;
3
4 public class ASTKeyValuePair extends SimpleNode {
5 private String m_key;
6
7 public ASTKeyValuePair(int id) {
8 super(id);
9 }
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 }