> I am trying to write a method that take a Class object as param and then
> determines all the classes in the Class object's inheritance hierarchy. Can
> somebody give me a pointer to get started?
<http://www.physci.org/api.jsp?class=java.lang.Class>
Especially Class.getSuperclass()
HTH

Signature
Andrew Thompson
http://www.PhySci.org/ Open-source software suite
http://www.PhySci.org/codes/ Web & IT Help
http://www.1point1C.org/ Science & Technology
>I am trying to write a method that take a Class object as param and then
>determines all the classes in the Class object's inheritance hierarchy. Can
>somebody give me a pointer to get started? Thanks
see http://mindprod.com/jgloss/classforname.html
There are tools to get he parent of a class. You chase it on up till
you get to object.
Look at the methods of the Class object. This does not require
reflection.

Signature
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.