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 256691 - Find Overriding Methods does not work for enum methods
Summary: Find Overriding Methods does not work for enum methods
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 8.1
Hardware: PC Windows 7
: P3 normal with 1 vote (vote)
Assignee: Ralph Ruijs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-11-19 13:18 UTC by matthies
Modified: 2015-11-19 13:18 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 matthies 2015-11-19 13:18:16 UTC
Example:

    public enum Test
    {
        TEST { @Override void test() { } };
        
        abstract void test();
    }

Performing "Find Overriding Methods" on test() finds no occurrences.