Bug 86490

Summary: Code assist doesn't propose enum constants
Product: [Eclipse Project] JDT Reporter: Dirk Baeumer <dirk_baeumer>
Component: CoreAssignee: David Audel <david_audel>
Status: RESOLVED DUPLICATE QA Contact:
Severity: normal    
Priority: P3    
Version: 3.1   
Target Milestone: 3.1 M6   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Dirk Baeumer CLA 2005-02-24 11:06:01 EST
M5a

package enums;

public enum Color {
	BLUE, RED, GREEN;
}

class Use {
	public static void main(String[] args) {
		Color c= null;
		switch(c) {
                    case <code assist>
		}
	}
}

I expect to see BLUE, RED, GREEN in the code assit invoked after the case statement.
Comment 1 David Audel CLA 2005-02-24 11:26:10 EST

*** This bug has been marked as a duplicate of 84554 ***