After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 670889 - (Java) Final enumeration value omitted from display (Windows XP)
(Java) Final enumeration value omitted from display (Windows XP)
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.0
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2012-02-27 14:24 UTC by julia.ross
Modified: 2012-05-19 12:26 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description julia.ross 2012-02-27 14:24:50 UTC
I've read that this bug has been resolved, but it still affects all of my Java enums.

Example:

public enum RuleEffect {
	PERMISSIVE, WARNING_LIMIT, RESTRICTIVE
}

generates documentation for PERMISSIVE and WARNING_LIMIT
but not for the final, RESTRICTIVE:

Member Data Documentation
com.db.fw.entl.pap.model.RuleEffect.PERMISSIVE
com.db.fw.entl.pap.model.RuleEffect.WARNING_LIMIT

My environment:
 - doxygen 1.8.0
 - Java 1.6
 - Windows XP

Julie
Comment 1 Dimitri van Heesch 2012-02-27 19:22:43 UTC
Hi Julie. 

I can confirm the bug. It should be fixed in the next subversion update.

As a workaround you could add a comma after the last enum value, which should be acceptable for the Java compiler, i.e.

public enum RuleEffect {
    PERMISSIVE, WARNING_LIMIT, RESTRICTIVE,
}
Comment 2 Dimitri van Heesch 2012-05-19 12:26:25 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.1. Please verify if this is indeed the case. Reopen the
bug if you think it is not fixed and please include any additional information
that you think can be relevant.