views:

2227

answers:

1

Something like:

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

Taken from the javadoc spec here http://java.sun.com/javase/6/docs/technotes/tools/windows/javadoc.html#@see

@see <a href="URL#value">label</a> Adds a link as defined by URL#value. The URL#value is a relative or absolute URL. The Javadoc tool distinguishes this from other cases by looking for a less-than symbol (<) as the first character. For Example

@see <a href="http://www.google.com">Google&lt;/a>

Aaron
Weird; I swear I only added in the backticks; I don't know where the example went to...
Stobor
I think we had some kind of concurrent edit problem. I was putting them in also.
Aaron
Fair enough. You're missing the backticks in the first line of your blockquote, though....
Stobor
Fixed. Thanks for pointing it out.
Aaron