diff options
author | aclement <aclement> | 2010-08-03 21:46:09 +0000 |
---|---|---|
committer | aclement <aclement> | 2010-08-03 21:46:09 +0000 |
commit | 0a8fc56aacd9abc1af745c1bc0162094eda7199e (patch) | |
tree | 75563d605f37f5b08b062b140c68115be0fd9f9b /org.aspectj.matcher | |
parent | a6e0e6b6e20137af302773daaa29302774eadaf5 (diff) | |
download | aspectj-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.java | 10 |
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 + ")"; } } |