Please tell me how to attach an external URL link to JavaDoc.

Asked 1 years ago, Updated 1 years ago, 111 views

/**
 * * See {@linktourl http://google.com}
 */

Like this.

java url javadoc hyperlink

2022-09-21 19:35

1 Answers

There are many ways.

/**
 * * @see <a href="http://google.com">http://google.com</a>
 */

See Also: http://google.com This is how it's rendered.

/**
 * * See <a href="http://google.com">http://google.com</a>
 */

If you do this,

See http://google.com It becomes an inline link.


2022-09-21 19:35

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.