À l'aide de JavaDoc, comment puis-je référencer la valeur d'un champ statique final dans la classe?
Je veux le ???
dans cet exemple remplacé par la valeur du champ STATIC_FIELD
.
/**
* 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";
}
Tu veux dire {@value #STATIC_FIELD}
?