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

Class.getDeclaringClass() throws unexpected exception

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • 1.4.2
    • 1.4.2
    • hotspot
    • None
    • mantis
    • generic
    • solaris_2.6

      Class.getDeclaringClass() throws IllegalAccessError when called on an instance of Class representing java/awt/LightweightDispatcher. Please see an example below (reproducible with 1.4.0, 1.4.1, 1.4.2) The same example works correctly with 1.3.1 and returns null since java/awt/LightweightDispatcher is not an inner class.

      package Fish;
      import java.lang.reflect.*;
      import java.io.*;
      public class A
      {

      public static void main(String[] args)
      {

      Class base = new java.awt.Container().getClass();
      ObjectStreamClass ocs = ObjectStreamClass.lookup(base);
      ObjectStreamField field = ocs.getField("dispatcher");
      Class cls = field.getType();
      System.out.println("Class type is "+cls.getName());
      Class dcl = cls.getDeclaringClass();
      System.out.println("Declaring class is "+dcl);
      }

      }

      class type is java.awt.LightweightDispatcher
        java.lang.IllegalAccessError: try to access class
      sun.awt.dnd.SunDropTargetContextPeer$EventDispatcher from class
      java.awt.LightweightDispatcher
                at java.lang.Class.getDeclaringClass(Native Method)

      Looking at the code in the debugger, getDeclaringClass() finds that the inner_classes field is not empty. It then tries to access constant pool at the offset in inner_classes and fails. Since java/awt/LightweightDispatcher is not an inner class, it seems strange that inner_classes field is not empty.

            jloizeausunw Jane Loizeaux (Inactive)
            ksoshals Kirill Soshalskiy (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: