Bug 65871 - Missing SUPER_INTERFACE_TYPES_PROPERTY in EnumDeclaration
Summary: Missing SUPER_INTERFACE_TYPES_PROPERTY in EnumDeclaration
Status: VERIFIED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.0 RC2   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-06-05 11:38 EDT by Riccardo Solmi CLA
Modified: 2004-06-11 09:43 EDT (History)
0 users

See Also:


Attachments

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