From 6d5d6bf4d7b86c691fb391884890095c55847ba0 Mon Sep 17 00:00:00 2001 From: aclement Date: Wed, 24 Nov 2010 19:38:28 +0000 Subject: [PATCH] 329925: declare @field remove annotation --- tests/features1611/declareMinus/OnOffITD.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/features1611/declareMinus/OnOffITD.java diff --git a/tests/features1611/declareMinus/OnOffITD.java b/tests/features1611/declareMinus/OnOffITD.java new file mode 100644 index 000000000..438dd77bd --- /dev/null +++ b/tests/features1611/declareMinus/OnOffITD.java @@ -0,0 +1,32 @@ +import java.lang.annotation.*; + +@Retention(RetentionPolicy.RUNTIME) +@interface Anno {} + +aspect Foo { + // one way round + declare @field: * OnOffITD.field: -@Anno; + declare @field: * OnOffITD.field: @Anno; + + // the other way round + declare @field: * OnOffITD.field2: @Anno; + declare @field: * OnOffITD.field2: -@Anno; +} + +aspect B { + public static int OnOffITD.field; + public int OnOffITD.field2; +} + +public class OnOffITD { + + + public static void main(String[]argv) throws Exception { + Object o = OnOffITD.class.getDeclaredField("field").getAnnotation(Anno.class); + System.out.println("field annotated? "+(o==null?"no":"yes")); + + o = OnOffITD.class.getDeclaredField("field2").getAnnotation(Anno.class); + System.out.println("field2 annotated? "+(o==null?"no":"yes")); + } +} + -- 2.39.5