Back
How to link an external URL in javadocs?
Use this syntax, this creates “Check This” heading containing the link, i.e.:
/** * @Check This <a href="http://google.com">http://google.com</a> */
/**
* @Check This <a href="http://google.com">http://google.com</a>
*/
This will give:
Check This:
http://google.com
And this syntax:
/** * Check <a href="http://google.com">http://google.com</a> */
* Check <a href="http://google.com">http://google.com</a>
Will help you to create an in-line link:
To read more click here.
31k questions
32.8k answers
501 comments
693 users