diff options
author | Andy Clement <andrew.clement@gmail.com> | 2012-04-02 14:27:15 -0700 |
---|---|---|
committer | Andy Clement <andrew.clement@gmail.com> | 2012-04-02 14:27:15 -0700 |
commit | e0e08d764baff374fa8c3251b72c4e6aeb7699c4 (patch) | |
tree | 698e5697dc1b14b751adc608ba22a91566b6a99f | |
parent | 096b004fda4d21cca0e1ee4c776e5824715d0ecd (diff) | |
download | aspectj-e0e08d764baff374fa8c3251b72c4e6aeb7699c4.tar.gz aspectj-e0e08d764baff374fa8c3251b72c4e6aeb7699c4.zip |
fixed up testcase field sigs
-rw-r--r-- | tests/bugs170/xmldefs/aop4.xml | 10 | ||||
-rw-r--r-- | tests/bugs170/xmldefs/aop5.xml | 12 | ||||
-rw-r--r-- | tests/bugs170/xmldefs/aop6a.xml | 2 |
3 files changed, 12 insertions, 12 deletions
diff --git a/tests/bugs170/xmldefs/aop4.xml b/tests/bugs170/xmldefs/aop4.xml index 1cf61807b..a6633b032 100644 --- a/tests/bugs170/xmldefs/aop4.xml +++ b/tests/bugs170/xmldefs/aop4.xml @@ -2,11 +2,11 @@ <aspectj> <aspects> <concrete-aspect name="ConjuredUp"> - <declare-annotation field="* field1(..)" annotation="@AnnoString("set from xml")"/> - <declare-annotation field="* field1(..)" annotation="@AnnoLong(999)"/> - <declare-annotation field="* field1(..)" annotation="@AnnoBoolean(true)"/> - <declare-annotation field="* field1(..)" annotation="@AnnoClass(Integer.class)"/> - <declare-annotation field="* field2(..)" annotation="@AnnoClass()"/> <!-- testing empty paren --> + <declare-annotation field="* field1" annotation="@AnnoString("set from xml")"/> + <declare-annotation field="* field1" annotation="@AnnoLong(999)"/> + <declare-annotation field="* field1" annotation="@AnnoBoolean(true)"/> + <declare-annotation field="* field1" annotation="@AnnoClass(Integer.class)"/> + <declare-annotation field="* field2" annotation="@AnnoClass()"/> <!-- testing empty paren --> </concrete-aspect> </aspects> diff --git a/tests/bugs170/xmldefs/aop5.xml b/tests/bugs170/xmldefs/aop5.xml index 31a5f7d48..67f9b6eee 100644 --- a/tests/bugs170/xmldefs/aop5.xml +++ b/tests/bugs170/xmldefs/aop5.xml @@ -2,12 +2,12 @@ <aspectj> <aspects> <concrete-aspect name="ConjuredUp"> - <declare-annotation field="* field1(..)" annotation="@AnnoShort(8)"/> - <declare-annotation field="* field1(..)" annotation="@AnnoChar('z')"/> - <declare-annotation field="* field1(..)" annotation="@AnnoDouble(99.0d)"/> - <declare-annotation field="* field1(..)" annotation="@AnnoFloat(6.0f)"/> - <declare-annotation field="* field2(..)" annotation="@AnnoByte(88)"/> - <declare-annotation field="* field2(..)" annotation="@AnnoInt(99)"/> + <declare-annotation field="* field1" annotation="@AnnoShort(8)"/> + <declare-annotation field="* field1" annotation="@AnnoChar('z')"/> + <declare-annotation field="* field1" annotation="@AnnoDouble(99.0d)"/> + <declare-annotation field="* field1" annotation="@AnnoFloat(6.0f)"/> + <declare-annotation field="* field2" annotation="@AnnoByte(88)"/> + <declare-annotation field="* field2" annotation="@AnnoInt(99)"/> </concrete-aspect> </aspects> diff --git a/tests/bugs170/xmldefs/aop6a.xml b/tests/bugs170/xmldefs/aop6a.xml index 2c6410a9b..99f070601 100644 --- a/tests/bugs170/xmldefs/aop6a.xml +++ b/tests/bugs170/xmldefs/aop6a.xml @@ -2,7 +2,7 @@ <aspectj> <aspects> <concrete-aspect name="ConjuredUp"> - <declare-annotation field="* field1(..)" annotation="@Annot( a= 'a' , fred = false, 'abc' )"/> + <declare-annotation field="* field1" annotation="@Annot( a= 'a' , fred = false, 'abc' )"/> </concrete-aspect> </aspects> |