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 36251 - the interface metod has incorrect icon for default access modifier
Summary: the interface metod has incorrect icon for default access modifier
Status: VERIFIED INVALID
Alias: None
Product: java
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 3.x
Hardware: All All
: P4 blocker (vote)
Assignee: issues@java
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-09-23 13:18 UTC by pzajac
Modified: 2007-09-26 09:14 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 pzajac 2003-09-23 13:18:42 UTC
1) create interface:

public interface a {
   void myMethod ();
}

The node in explorer for getNextItems method has
the same icon as package private method of class.
The all methods of interface have public access
identifier at default.  

There is better to the all methods of interface 
will have the same (public) icon value.
Comment 1 Max Sauer 2005-08-10 09:05:21 UTC
Petre, could you please check is this issue is still valid? I can't understand
its description. 

When I try to create a public inteface as described, myMethod is displayed as
public (no lock shown).
Comment 2 pzajac 2005-08-10 09:58:42 UTC
It is quite nonsence, what I described :-)
The visibility of method in interface dependes on visibility of the interface.  
void method(); 
is the same like:
public void method(); 
Comment 3 pzajac 2005-08-31 14:36:54 UTC
v