|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.codehaus.aspectwerkz.metadata.QDoxParser
Parses a src tree with QDox
.
Usage:
QDoxParser parser = new QDoxParser("src"); parser.compile("foo.Bar"); JavaMethod[] methods = parser.getJavaMethods(); JavaFields[] fields = parser.getJavaFields();
Constructor Summary | |
QDoxParser(java.lang.String srcDir)
Adds a source tree to the builder. |
Method Summary | |
java.lang.String[] |
getAllClassNames()
Returns all classes. |
com.thoughtworks.qdox.model.JavaClass |
getJavaClass()
Returns the QDox JavaClass. |
com.thoughtworks.qdox.model.JavaField[] |
getJavaFields()
Parses a specific class A returns an array with the methods. |
com.thoughtworks.qdox.model.JavaMethod[] |
getJavaMethods()
Parses a specific class A returns an array with the methods. |
boolean |
parse(java.lang.String className)
Parses a specific class. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public QDoxParser(java.lang.String srcDir)
srcDir
- the source tree to getJavaMethodsMethod Detail |
public boolean parse(java.lang.String className)
className
- the name of the class to compile
public com.thoughtworks.qdox.model.JavaClass getJavaClass()
public java.lang.String[] getAllClassNames()
public com.thoughtworks.qdox.model.JavaMethod[] getJavaMethods()
public com.thoughtworks.qdox.model.JavaField[] getJavaFields()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |