Bug 94150 - [1.5][javadoc][enum] javadoc is always null for EnumConstantDeclaration
Summary: [1.5][javadoc][enum] javadoc is always null for EnumConstantDeclaration
Status: VERIFIED FIXED
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 RC1   Edit
Assignee: Frederic Fusier CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-05-09 12:28 EDT by julien CLA
Modified: 2005-05-27 10:04 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 julien CLA 2005-05-09 12:28:17 EDT
public enum Category
{
    /**
     * history style
     */ 
     HISTORY,

    /**
     * war style
     */ 
     WAR;
}

The ASTParser return the null javadoc on the EnumConstantDeclaration. I'm 
using the build I20050506-1600.
Comment 1 Frederic Fusier CLA 2005-05-17 09:57:26 EDT
Fixed.

We're missing to convert javadoc while converting enum constant declaration...

[jdt-core internal]
Changes done in ASTConverter.convert(FieldDeclaration).

Test case added in ASTConverterJavadocTest
Comment 2 Olivier Thomann CLA 2005-05-27 10:04:14 EDT
Verified in I20050526-2000