summaryrefslogtreecommitdiffstats
path: root/org.aspectj.matcher
diff options
context:
space:
mode:
authoraclement <aclement>2010-08-03 21:46:09 +0000
committeraclement <aclement>2010-08-03 21:46:09 +0000
commit0a8fc56aacd9abc1af745c1bc0162094eda7199e (patch)
tree75563d605f37f5b08b062b140c68115be0fd9f9b /org.aspectj.matcher
parenta6e0e6b6e20137af302773daaa29302774eadaf5 (diff)
downloadaspectj-0a8fc56aacd9abc1af745c1bc0162094eda7199e.tar.gz
aspectj-0a8fc56aacd9abc1af745c1bc0162094eda7199e.zip
278496: toString modifications for expected output testing
Diffstat (limited to 'org.aspectj.matcher')
-rw-r--r--org.aspectj.matcher/src/org/aspectj/weaver/EnumAnnotationValue.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.aspectj.matcher/src/org/aspectj/weaver/EnumAnnotationValue.java b/org.aspectj.matcher/src/org/aspectj/weaver/EnumAnnotationValue.java
index 2a116c9a7..d28b901b6 100644
--- a/org.aspectj.matcher/src/org/aspectj/weaver/EnumAnnotationValue.java
+++ b/org.aspectj.matcher/src/org/aspectj/weaver/EnumAnnotationValue.java
@@ -13,17 +13,17 @@ package org.aspectj.weaver;
public class EnumAnnotationValue extends AnnotationValue {
- private String type;
+ private String typeSignature;
private String value;
- public EnumAnnotationValue(String type, String value) {
+ public EnumAnnotationValue(String typeSignature, String value) {
super(AnnotationValue.ENUM_CONSTANT);
- this.type = type;
+ this.typeSignature = typeSignature;
this.value = value;
}
public String getType() {
- return type;
+ return typeSignature;
}
public String stringify() {
@@ -31,7 +31,7 @@ public class EnumAnnotationValue extends AnnotationValue {
}
public String toString() {
- return value;
+ return "E(" + typeSignature + " " + value + ")";
}
}