mcfly soft
mcfly soft

Reputation: 11651

Link to codeline with javadoc

Is it possible to create a link to a specific codeline (ankor) with javadoc. I can link methods and classes of course, but I would like to link to specific codeline where a specific mehtod is called.

Is this possible in any way ?

Upvotes: 1

Views: 826

Answers (1)

Daij-Djan
Daij-Djan

Reputation: 50089

I agree with the comment that this shouldnt be in the javadoc. the doc generated by the javadoc is supposed to be independent from code.

BUT

if you use eclipse then a file+line can be linked: @link myFile.java:<<LINE>>

This isn't part of the official javadoc specification though ;)

Upvotes: 2

Related Questions