From: aclement Date: Wed, 24 Nov 2010 19:38:28 +0000 (+0000) Subject: 329925: declare @field remove annotation X-Git-Tag: V1_6_11M1~28 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6d5d6bf4d7b86c691fb391884890095c55847ba0;p=aspectj.git 329925: declare @field remove annotation --- 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")); + } +} +