/**
* This is a simple class with only one static field with the value ???.
*/
public class Simple {
/**
* We can reference the value with {@value} here,
* but how do we reference it in the class JavaDoc?
*/
public static final String STATIC_FIELD = "simple static field";
}
The code says it all :-) Thanks for any help in advance!
EDIT: What I actually want is that the "???" above are replaced by the value of the field STATIC_FIELD. A link would not be perfect, but better than nothing :-)