Java Class Parser?

Anyone know of a good and easy to use package that would allow one to read a Java class and manipulate methods,attributes, and class inheritance information?Thanks in advance.
[196 byte] By [matsibp] at [2007-9-26 7:45:10]
# 1
Wrong forum, but anyways: http://bcel.sourceforge.net/
thpreusser at 2007-7-1 17:52:55 > top of Java-index,Other Topics,Java Community Process (JCP) Program...
# 2

To tell the true there is one very good package

java.lang.reflect

(with small help from java.lang)

I can't imagine package which could provide more

comfortable way for extracting such info.

The only problem may be: how to use it?

You can find some sample class in package:

http://prdownloads.sourceforge.net/wttools/unittestsgen-0.5.0.src.zip

And look for a file named SrcParserImpl.java

regards

Artur Hefczyc

wislaj23 at 2007-7-1 17:52:55 > top of Java-index,Other Topics,Java Community Process (JCP) Program...