summaryrefslogtreecommitdiffstats
path: root/src/test/TestAnnotationsEclipse.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/TestAnnotationsEclipse.java')
-rw-r--r--src/test/TestAnnotationsEclipse.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/test/TestAnnotationsEclipse.java b/src/test/TestAnnotationsEclipse.java
new file mode 100644
index 0000000..42a06c0
--- /dev/null
+++ b/src/test/TestAnnotationsEclipse.java
@@ -0,0 +1,42 @@
+package test;
+
+import java.lang.annotation.Annotation;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.reflect.Constructor;
+import java.lang.reflect.Method;
+
+public class TestAnnotationsEclipse {
+
+ public String a;
+
+ @Retention(RetentionPolicy.CLASS)
+ @interface MyAnnotation {}
+
+ public static void main(String[] args) {
+
+ TestInner a = new TestAnnotationsEclipse().new TestInner();
+
+ for(Constructor mt : a.getClass().getConstructors()) {
+
+ Annotation[][] ann = mt.getParameterAnnotations();
+
+ System.out.println(ann.length);
+ }
+ }
+
+ protected class TestInner {
+
+ public TestInner() {}
+
+ public TestInner(String param1, Object param2, @MyAnnotation boolean param3) {
+ System.out.println(param1);
+ System.out.println(param2);
+ System.out.println(param3);
+ }
+
+ public void accessField() {
+ System.out.println(TestAnnotationsEclipse.this.a);
+ }
+ }
+}