This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 255284 - IncompatibleClassChangeError: Implementing class
Summary: IncompatibleClassChangeError: Implementing class
Status: RESOLVED DUPLICATE of bug 249453
Alias: None
Product: third-party
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 8.1
Hardware: All All
: P3 normal (vote)
Assignee: _ rkubacki
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-09-15 06:56 UTC by Exceptions Reporter
Modified: 2015-09-15 12:04 UTC (History)
3 users (show)

See Also:
Issue Type: DEFECT
Exception Reporter: 214527


Attachments
stacktrace (2.05 KB, text/plain)
2015-09-15 06:56 UTC, Exceptions Reporter
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Exceptions Reporter 2015-09-15 06:56:17 UTC
This issue was reported manually by pellierdaniel.
It already has 4 duplicates 


Build: NetBeans IDE 8.1 Beta (Build 201508041349)
VM: Java HotSpot(TM) 64-Bit Server VM, 25.66-b02, Java(TM) SE Runtime Environment, 1.8.0_66-ea-b02
OS: Linux

User Comments:
GUEST: On create a java application.

GUEST: I create one Interface exemple:
public interface DataBase
{

  void persist(final Batch batch);

}
I create one class who implements this interface exemple
public class Table1 implements DataBase
{
  private String data1;

  public String getData1()
  {
    return data1;
  }

  public String setData1(final String data1)
  {
    this.data1 = data1;
  }
}
When I change with the screen of interface and the screen of class I see this exception.

GUEST: Created a new class inside of a package.

ewer: Closed one editor window




Stacktrace: 
java.lang.IncompatibleClassChangeError: Implementing class
   at java.lang.ClassLoader.defineClass1(ClassLoader.java:0)
   at java.lang.ClassLoader.defineClass(ClassLoader.java:760)
   at org.netbeans.JarClassLoader.doLoadClass(JarClassLoader.java:311)
   at org.netbeans.ProxyClassLoader.selfLoadClass(ProxyClassLoader.java:259)
   at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:187)
   at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
Comment 1 Exceptions Reporter 2015-09-15 06:56:20 UTC
Created attachment 156169 [details]
stacktrace
Comment 2 Exceptions Reporter 2015-09-15 07:41:00 UTC
This bug already has 5 duplicates 
see http://statistics.netbeans.org/exceptions/detail.do?id=214527
Comment 3 Jaroslav Havlin 2015-09-15 12:04:06 UTC
Exception in PMD module. Duplicate of bug 249453.
Thank you for reporting.

*** This bug has been marked as a duplicate of bug 249453 ***