GNOME Bugzilla – Bug 670889
(Java) Final enumeration value omitted from display (Windows XP)
Last modified: 2012-05-19 12:26:25 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
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, }
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.