Skip to content

Commit

Permalink
Merge pull request #110 from kwin/feature/improve-javadoc-of-getComment
Browse files Browse the repository at this point in the history
clarify getComment() javadoc with regards to Standard doclet inline and
  • Loading branch information
paul-hammant authored Nov 23, 2023
2 parents 3db15e4 + 500f2fa commit 6ba542e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ public interface JavaAnnotatedElement extends JavaModel

/**
* Retrieve the javadoc comment of this annotated element.
* This is the part between /** and the */, but without the doclet tags
* This is the part between <code>&#47;&#42;&#42;</code> and <code>&#42;&#47;</code>, but without the
* <a href="https://docs.oracle.com/en/java/javase/17/docs/specs/javadoc/doc-comment-spec.html#block-tags">Standard doclet block tags</a>.
* It may still contain <a href="https://docs.oracle.com/en/java/javase/17/docs/specs/javadoc/doc-comment-spec.html#inline-tags">Standard doclet inline tags</a>, though.
*
* @return the comment, otherwise <code>null</code>
*/
Expand Down

0 comments on commit 6ba542e

Please sign in to comment.