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 181022 - Implement all abstract methods hint should work on enums
Summary: Implement all abstract methods hint should work on enums
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Hints (show other bugs)
Version: 6.x
Hardware: All Windows XP
: P3 normal (vote)
Assignee: Svata Dedic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-02-21 20:27 UTC by _ tboudreau
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 _ tboudreau 2010-02-21 20:27:49 UTC
Given the following code:

    public static enum Transform {
        FLIP_HORIZONTAL() {
            
        },
        FLIP_VERTICAL() {
            
        },
        REVERSE() {
            
        }
        ;
        public abstract Point translate (int x, int y, int width, int height);
        public abstract Point reverse (int x, int y, int width, int height);
    }

it would be nice if implement all abstract methods worked on the enum constants.