Bug 80821 - Javadoc in enums is not correctly handled
Summary: Javadoc in enums is not correctly handled
Status: RESOLVED DUPLICATE of bug 78018
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 M4   Edit
Assignee: Frederic Fusier CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-12-13 10:56 EST by Matt Wallace CLA
Modified: 2004-12-13 13:41 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 Matt Wallace CLA 2004-12-13 10:56:49 EST
I have warnings turned on for missing javadoc, and Eclipse doesn't seem to 
recognize the Javadoc comments I put in my enums.  Specifically code like this 
generates a warning:

public static enum MyEnum {
   MyValueOne(1),


}
Comment 1 Matt Wallace CLA 2004-12-13 11:00:16 EST
Mis-Entered, trying again:

I have warnings turned on for missing javadoc, and Eclipse doesn't seem to 
recognize the Javadoc comments I put in my enums.  Specifically code like this 
generates a warning for missing JavaDoc:

/**
 *  My enumeration.
 */
public static enum MyEnum {
   /**
    *  The first value.
    */
   MyValueOne(1),
   /**
    *  The second value.
    */
   MyValueTwo(2);
   private MyEnum(int i) {
   }
}
Comment 2 Frederic Fusier CLA 2004-12-13 11:17:47 EST
which 3.1 build are you using?
Comment 3 Matt Wallace CLA 2004-12-13 13:32:31 EST
Using build 3.1M3.
Comment 4 Frederic Fusier CLA 2004-12-13 13:41:11 EST

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