Add doxygen testing of Java constructor wrappers
This commit is contained in:
parent
9cc05724ef
commit
602b0d5a2c
6 changed files with 20 additions and 4 deletions
|
|
@ -34,6 +34,10 @@ public class CommentParser {
|
|||
if (f.getRawCommentText().length() > 0)
|
||||
m_parsedComments.put(f.qualifiedName(), f.getRawCommentText());
|
||||
}
|
||||
for (ConstructorDoc c : classDoc.constructors()) {
|
||||
if (c.getRawCommentText().length() > 0)
|
||||
m_parsedComments.put(c.toString(), c.getRawCommentText());
|
||||
}
|
||||
for (MethodDoc m : classDoc.methods()) {
|
||||
if (m.getRawCommentText().length() > 0)
|
||||
m_parsedComments.put(m.toString(), m.getRawCommentText());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue