Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-5028251

Incomplete generifications in java.lang.annotation, java.lang.reflect

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 5.0
    • 5.0
    • core-libs

      The following API elements improperly use raw types:

      package java.lang.annotation;
      public class IncompleteAnnotationException extends RuntimeException {

          // Class, below, should be Class<? extends Annotation>
          public IncompleteAnnotationException(Class annotationType,
                                               String memberName);
          public Class annotationType();
      }


      package java.lang.reflect;
      public final class Array {
          // Class, below, should be Class<?>
          public static Object newInstance(Class componentType, int length);
          public static Object newInstance(Class componentType, int[] dimensions);
      }
      public final
          class Constructor<T> extends AccessibleObject implements
                                                          GenericDeclaration,
                                                          Member {
          // Class[], below, should be Class<?>[]
          public Class[] getParameterTypes();
          public Class[] getExceptionTypes();

      }
      public final
      class Field extends AccessibleObject implements Member {
          // Class, below, should be Class<?>
          public Class getDeclaringClass();
          public Class getType();
      }
      public
      interface Member {
          // Class, below, should be Class<?>
          public Class getDeclaringClass();
      }
      public final
          class Method extends AccessibleObject implements GenericDeclaration,
                                                           Member {
          // Class, below, should be Class<?>
          public Class getDeclaringClass();
          public Class getReturnType();
          // Class[], below, should be Class<?>[]
          public Class[] getParameterTypes();
          public Class[] getExceptionTypes();
      }
      public class Proxy implements java.io.Serializable {
          // Class, below, should be Class<?>
          public static Class getProxyClass(ClassLoader loader,
                                            Class... interfaces);
          public static Object newProxyInstance(ClassLoader loader,
                                                Class[] interfaces,
                                                InvocationHandler h);
          public static boolean isProxyClass(Class cl);
      }

            gafter Neal Gafter (Inactive)
            gafter Neal Gafter (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: