[Doxygen-users] Field & Method Document for Java Enum
Brought to you by:
dimitri
|
From: halil k. <hal...@gm...> - 2011-01-18 14:51:04
|
*Hi,*
*
*
*I have used doxygen to document my source codes. It is very nice tool.
Thanks developers.*
*
*
*Here is my problem, please let me know if there is a way to achieve this.*
*
*
*I have an java enum like below:*
*
*
*
public enum STATUS{
WAITING(1),
INPROGRESS(2),
SUCCESS(4),
FAIL(8);
/**
* Test if
StatCode
documented! You can use StatCode with bitwise op |...
*/
public final int StatCode;
private
STATUS
(int code) {
this.
StatCode
= code;
}
}
*
*
*
*But I can't get StatCode documentation in output. *
*
*
*I am using version 1.7.1. *
*
**Halil İbrahim Kirazlı*
|