Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Java by (2.6k points)

How to link an external URL in javadocs?

1 Answer

0 votes
by (46k points)

Use this syntax, this creates “Check This” heading containing the link, i.e.:

/**

 * @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>

 */

Will help you to create an in-line link:

To read more click here.

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...