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 82386

Summary: Override method dialog shoud show methods with package access.
Product: java Reporter: Jiri Prox <jiriprox>
Component: EditorAssignee: Dusan Balek <dbalek>
Status: NEW ---    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:

Description Jiri Prox 2006-08-10 14:00:13 UTC
NetBeans IDE Dev (Build 200608091800)
1.5.0_07; Java HotSpot(TM) Client VM 1.5.0_07-b03
Linux version 2.6.5-1.358 running on i386
en_US (nb); UTF-8

Override methods dialog (Ctrl - I) should show methods with package access (e.g.
w/o any modificator) if they are from classes located in the same package.

Example:
two classes:

public abstract class AbsParent {            
    abstract void action();    
}

and

public class Implementor extends AbsParent{
    
}

the class Implementor can not be compiled since it does not implement abstract
method. If the override dialog is opened it does not contain required method.