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 206685 - [encapsulate field] introduces compilation error: Cannot reduce the visibility of the inherited method from
Summary: [encapsulate field] introduces compilation error: Cannot reduce the visibilit...
Status: RESOLVED WONTFIX
Alias: None
Product: java
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 7.0.1
Hardware: PC Mac OS X
: P4 normal (vote)
Assignee: Jan Becicka
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-12-24 03:44 UTC by GustavoSoares
Modified: 2016-07-07 07:16 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description GustavoSoares 2011-12-24 03:44:17 UTC
Create the classes:

package p2;
public class A {
  public long f=10;
}


package p2;
public class C extends A {
  long getF(){
    return 0;
  }
  public long test(){
    return m();
  }
  public long m(){
    return getF();
  }
}
package p1;
import p2.*;
public class B extends A {
}

	
apply the encapsulate field refactoring to f 


package p2;
public class A {
  private long f=10;

    public long getF() {
        return f;
    }

    public void setf(long f) {
        this.f = f;
    }
}


package p2;
public class C extends A {
  long getF(){
    return 0;
  }
  public long test(){
    return m();
  }
  public long m(){
    return getF();
  }
}


package p1;
import p2.*;
public class B extends A {
}



The resulting program does not compile.
Comment 1 Martin Balin 2016-07-07 07:16:41 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