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

NoClassDefFoundError in BeanBox for multipackaged bean with inner classes

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.2.0
    • 1.1
    • tools
    • None
    • 1.2beta
    • x86
    • windows_nt
    • Not verified



      Name: sgC58550 Date: 03/14/97


      BuggyBean is a simple applet with only one new statement in its constructor.
      Construcor of class b of the other package b contains anonymous inner class instantiation.
      This anonymous class has foo() method which calls bar() method of enclosing instance.
      In this case BuggyBean prints java.lang.NoClassDefFoundError.

      This error disappears if the bar() is removed.

      Here is the source of two java files
      BuggyBean.java
      b\b.java

      //////////////////////////////////////////////////////////
      // BuggyBean.java
      //

      import java.applet.*;

      import b.b;

      public class BuggyBean extends Applet
      {
      public BuggyBean ()
      {
      new b ();
      }
      }

      // End of BuggyBean.java

      /////////////////////////////////////////////////////////
      // b.java
      //

      package b;

      class InnerClassBase
      {
      public void foo () {}
      }

      public class b
      {
      public b ()
      {
      new InnerClassBase ()
      {
      public void foo ()
      {
      bar ();
      }
      };
      }

      public void bar () {}
      }

      // End of b.java
      company - PHYSICON , email - ###@###.###
      ======================================================================

            dstoutamsunw David Stoutamire (Inactive)
            sgoodsunw Sheri Good (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: