Bug 86490 - Code assist doesn't propose enum constants
Summary: Code assist doesn't propose enum constants
Status: RESOLVED DUPLICATE of bug 84554
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.1   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.1 M6   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-02-24 11:06 EST by Dirk Baeumer CLA
Modified: 2005-02-24 12:27 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***