Hello,
I am using JavaParser (Java Source Reflection) to parse .java files, but what I really want is to get the info from the comments, Javadoc and simple // comments.
JavaParser parses only the code and not the comments. So:
gives the names of the methods but null for the javadoc comments.Code:JavaMethod[] methods = js.getMethods();
for (int i = 0; i < methods.length; i++) {
System.out.println(" " + methods[i].getName());
System.out.println(" " + methods[i].getComment());
}
I am using netbeans. Do you know which library should I use?

