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

Summary: Implement all abstract methods hint should work on enums
Product: java Reporter: _ tboudreau <tboudreau>
Component: HintsAssignee: Svata Dedic <sdedic>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: Windows XP   
Issue Type: ENHANCEMENT Exception Reporter:

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.