htmljavadoc

Javadoc multiline anchor tag


I'd like to do something like this:

/**
 * Check out this <a href="#">external link</a>!.
 */
 public void foo() {

 }

However, the href for the external link is really long, like:

<a href="http://www.example.com/this/is/a/really/long/link/and/it/doesnt/fit/on/one/line/which/is/problematic/with/javadoc">external link</a>

I'm conforming to a coding standard with a fixed line width. Is there a way to format this with Javadoc?


Solution

  • Why don't you shorten it?

    Just some right off the top of my head.