Bug 65871

Summary: Missing SUPER_INTERFACE_TYPES_PROPERTY in EnumDeclaration
Product: [Eclipse Project] JDT Reporter: Riccardo Solmi <solmi>
Component: CoreAssignee: David Audel <david_audel>
Status: VERIFIED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 3.0   
Target Milestone: 3.0 RC2   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Riccardo Solmi CLA 2004-06-05 11:38:00 EDT
In the static initialization block 
of "org.eclipse.jdt.core.dom.EnumDeclaration" class there is no "addProperty" 
call for the structural property: "superInterfaceTypes".

Please, fix the bug as follows:
	static {
		createPropertyList(EnumDeclaration.class);
		addProperty(JAVADOC_PROPERTY);
		addProperty(MODIFIERS2_PROPERTY);
		addProperty(NAME_PROPERTY);
		addProperty(SUPER_INTERFACE_TYPES_PROPERTY); //TODO add me!
		addProperty(BODY_DECLARATIONS_PROPERTY);
		PROPERTY_DESCRIPTORS = reapPropertyList();
	}
Comment 1 David Audel CLA 2004-06-08 06:58:32 EDT
Thanks for the fix.

Fixed and released in HEAD.
Comment 2 Olivier Thomann CLA 2004-06-11 09:43:02 EDT
Verified in 200406110010