I just found out that I can write "{@value}" in a comment of an open static final field to insert the actual value of the field in the comment. Example:
public static final int someField = 3
In Eclipse, this comment appears as "The value of this field is 3". Another trick is to write "{@code some-code}" to insert the code into the comment.
Is there any complete list of these special comment tags? I could not find him ...
java comments
python dude
source share