13
I’m looking for better ways to document my code in Netbeans.
Besides the tags known and used in Javadoc something caught my attention and aroused my curiosity.
When typing {@
some suggestions of documentation with tags I’ve never seen and I don’t know what it’s for. Some:
{@code}
{@docRoot}
{@link}
{@linkplain}
{@literal}
{@link}
would be a tag replacement @link
? What are these other tags for?
You can refer to the complete list as well as the explanation of the meaning of each one directly on official website.
– irobson