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 201606

Summary: [rename class] introduces compilation error: The method is undefined for the type
Product: java Reporter: GustavoSoares
Component: RefactoringAssignee: Ralph Ruijs <ralphbenjamin>
Status: RESOLVED WONTFIX    
Severity: normal    
Priority: P4    
Version: 7.0.1   
Hardware: PC   
OS: Mac OS X   
Issue Type: DEFECT Exception Reporter:

Description GustavoSoares 2011-09-05 02:49:27 UTC
1. Create the classes:
package p2;
import p1.*;
public class C extends A {
  protected long k(  long a){
    return 1;
  }
  public long k(  int a){
    return 0;
  }
}
package p1;
public class B extends A {
}
package p1;
import p2.*;
public class A {
  public long m(){
    return new C().k(2);
  }
}
2. apply the rename class refactoring to rename B to C
package p1;
import p2.*;
public class A {
  public long m(){
    return new C().k(2);
  }
}

package p1;
public class C extends A {
}

package p2;
import p1.*;
public class C extends A {
  protected long k(  long a){
    return 1;
  }
  public long k(  int a){
    return 0;
  }
}
3. The resulting program does not compile
Comment 1 Martin Balin 2016-07-07 07:18:51 UTC
This old bug may not be relevant anymore. If you can still reproduce it in 8.2 development builds please reopen this issue.

Thanks for your cooperation,
NetBeans IDE 8.2 Release Boss