From 4273a2ddbf02819eb52e4fbbbe84a1e0ee4059ae Mon Sep 17 00:00:00 2001 From: aclement Date: Tue, 7 Dec 2004 09:41:57 +0000 Subject: Annotation Matching - test code --- weaver/testdata/SimpleAnnotation.java | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 weaver/testdata/SimpleAnnotation.java (limited to 'weaver/testdata/SimpleAnnotation.java') diff --git a/weaver/testdata/SimpleAnnotation.java b/weaver/testdata/SimpleAnnotation.java new file mode 100644 index 000000000..5b4303755 --- /dev/null +++ b/weaver/testdata/SimpleAnnotation.java @@ -0,0 +1,7 @@ +import java.lang.annotation.*; + +@Retention(RetentionPolicy.RUNTIME) +public @interface SimpleAnnotation { + int id(); + String fruit() default "bananas"; +} -- cgit v1.2.3