Uploaded image for project: 'Application Server 3  4  5 and 6'
  1. Application Server 3 4 5 and 6
  2. JBAS-8514

java.lang.VerifyError: class com... overrides final method getCellRenderer.(II)Ljavax/swing/table/TableCellRenderer

    XMLWordPrintable

Details

    • Bug
    • Resolution: Unresolved
    • Major
    • No Release
    • 6.0.0.M5
    • ClassLoading
    • None
    • Hide

      Just by putting java.lang.VerifyError to ignored exceptions at scanning-deployers.

      Show
      Just by putting java.lang.VerifyError to ignored exceptions at scanning-deployers.

    Description

      During the startup of a webapp I get really lots of these errors:

      09:02:08,652 WARN [ClassLoaderManager] Unexpected error during load of:com.foo.bar.MyTable: java.lang.VerifyError: class com.foo.bar.MyTable overrides final method getCellRenderer.(II)Ljavax/swing/table/TableCellRenderer;
      at java.lang.ClassLoader.defineClass1(Native Method) [:1.6.0_16]
      at java.lang.ClassLoader.defineClass(ClassLoader.java:621) [:1.6.0_16]
      at org.jboss.classloader.spi.base.BaseClassLoader.access$200(BaseClassLoader.java:52) [jboss-classloader.jar:2.2.0.Alpha8]
      ...

      The class MyTable extends from FoobarTable and FoobarTable extends from JTable... I'm little bit confused about the error message, because
      I've got two getCellRenderer-methods. One of them overrides these one in JTable, the other one is private in both classes (MyTable and FoobarTable).
      But no one of them is final.

      Looks like:

      public class FoobarTable extends JTable {
      @Override
      public TableCellRenderer getCellRenderer(int row, int column)

      { ... }
      private TableCellRenderer getCellRenderer(Class x){ ... }

      }

      public class MyTable extends FoobarTable {
      @Override
      public TableCellRenderer getCellRenderer(int row, int column)

      { ... }
      private TableCellRenderer getCellRenderer(Class x){ ... }

      }

      Attachments

        Activity

          People

            starksm64 Scott Stark (Inactive)
            tfromm_jira Thomas Fromm (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: