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 - Override method dialog shoud show methods with package access.
Summary: Override method dialog shoud show methods with package access.
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-08-10 14:00 UTC by Jiri Prox
Modified: 2013-09-02 14:20 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.