jdk/test/java/beans/Introspector/TestTypeResolver.java
changeset 15332 aa02ac4b20b7
parent 11092 6c49e728d427
child 16468 8675645c0757
--- a/jdk/test/java/beans/Introspector/TestTypeResolver.java	Thu Jan 24 17:50:03 2013 +0400
+++ b/jdk/test/java/beans/Introspector/TestTypeResolver.java	Thu Jan 24 17:57:02 2013 +0400
@@ -180,10 +180,22 @@
             return null; // not used
         }
 
+        public <T extends Annotation> T[] getAnnotations(Class<T> annotationClass) {
+            return null; // not used
+        }
+
         public Annotation[] getAnnotations() {
             return null; // not used
         }
 
+        public <T extends Annotation> T getDeclaredAnnotation(Class<T> annotationClass) {
+            return null; // not used
+        }
+
+        public <T extends Annotation> T[] getDeclaredAnnotations(Class<T> annotationClass) {
+            return null; // not used
+        }
+
         public Annotation[] getDeclaredAnnotations() {
             return null; // not used
         }