How to javadoc "public final static int"?

How can we create "Field Summary" HTML document for "public final static int" variables?

This question is probably same as the below question.

http://forums.java.sun.com/thread.jsp?forum=41&thread=72832

p.s.

The below document indicates CENTER, NORTH, ...

How an we achieve it to document "public final static" variables?

http://java.sun.com/products/jdk/1.2/docs/api/index.html

[439 byte] By [tanigu] at [2007-9-26 3:22:51]
# 1

I answered the other question you refer to with this:

You might like to know that in 1.4 Beta 3, we are

planning to add the int value to the output for each

static constant that javadoc normally outputs.

For example:

public static final int NORTH = 0

Is that what you're looking for?

-Doug Kramer

Javadoc team

dkramer at 2007-6-29 11:40:58 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
Thank you for the answer.
tanigu at 2007-6-29 11:40:58 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 3
Is there any way to do it in Java 1.3x? Does it output the values of public static final String as well?
ytcheung at 2007-6-29 11:40:58 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 4

No, 1.3 does not have the static constant values exposed to the Doclet API,

and so that information is not available to any doclets to place in the

generated documentation.

BTW, based on feedback from a developer, we changed the format from:

public static final int NORTH = 0

to

public static final int NORTH

See: Constant values

where the "Constant values" link takes them to a summary page that

lists all of the values. This helps discourage users from mistakenly

seeing and using the value instead of the constant.

-Doug Kramer

Javadoc team

dkramer at 2007-6-29 11:40:58 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...