Something like:
/** * See {@linktourl http://google.com} */
This creates a "See Also" heading containing the link, i.e.:
/** * @see <a href="http://google.com">http://google.com</a> */
will render as:
See Also: http://google.com
whereas this:
/** * See <a href="http://google.com">http://google.com</a> */
will create an in-line link:
See http://google.com
2.1m questions
2.1m answers
60 comments
57.0k users