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)
-
Activity
| Field | Original Value | New Value |
|---|---|---|
| Attachment | TestQDOX154.java [ 40761 ] |
| Fix Version/s | 1.10 [ 15020 ] | |
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Resolution | Cannot Reproduce [ 5 ] | |
| Assignee | Robert Scholte [ rfscholte ] |
| Resolution | Cannot Reproduce [ 5 ] | |
| Status | Resolved [ 5 ] | Reopened [ 4 ] |
| Status | Reopened [ 4 ] | Closed [ 6 ] |
| Resolution | Not A Bug [ 6 ] |
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.