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 108484

Summary: [push down method] PushDown a method referenced in another class returns an error message
Product: editor Reporter: kely_garcia <kely_garcia>
Component: RefactoringAssignee: issues@java <issues>
Status: RESOLVED DUPLICATE    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: PC   
OS: Windows XP   
Issue Type: DEFECT Exception Reporter:

Description kely_garcia 2007-06-29 01:00:27 UTC
Build ID: Netbeans 6.0 M9 (070502)

Steps To Reproduce:
Push down method m on the following returns an erroneous message: "Cannot push down any members. The selected type has 
no subtypes". It should be possible to push down method m in this case. 

public class A {  
  public void m(){
  }
}
class B extends A {
  void mPrime(){
    new A().m();
  }
}
Comment 1 Jan Becicka 2007-06-29 11:11:21 UTC

*** This issue has been marked as a duplicate of 108482 ***
Comment 2 kely_garcia 2007-08-09 21:49:05 UTC
If we Push down method A.m() in the following program, we get this compilation error: "cannot find symbol: method m
()". I think this bug is different from 108482. 

A.java
package p;

public class A {  
  public void m(){
  }
}

B.java
package p;

class B extends A {
  void mPrime(){
    new A().m();
  }
}