Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Not A Bug
-
Affects Version/s: None
-
Fix Version/s: 1.10
-
Component/s: None
-
Labels:None
-
Number of attachments :
Issue Links
- depends upon
-
QDOX-168
Parsing JavadocComment (please validate)
-
Here is a small sample:
/** * A Javadoc sample. * * @return The size. */ public long getSize() { return 0; } /** * @return The size. * * A Javadoc sample. */ public long getSize2() { return 0; }The javaMethod.getComment() is empty for getSize2() and should be equal to "A Javadoc sample."
If it is a known limitation, the API should reflect this limitation.
I attached a test case which displays the following.