On Jul 25, 9:34 am, "sak...@gmail.com" <sak...@gmail.com> wrote:
> we have many classes that define static values, we want to load them
> by class names and with hierarchies.
>
> I am just looking for a way, any way, of finding all derived classes
> given a parent
In the Eclipse IDE, there is a "Type Hierarchy" view. It gives you a
way to navigate the entire inheritance tree.
Henk
Lew - 25 Jul 2007 15:16 GMT
"sakcee@gmail.com" wrote:
>> I am just looking for a way, any way, of finding all derived classes
>> given a parent
This is a stronger requirement than you first stated:
> I am trying to find a way to find all the derived classes , given a
> parent class, off a source folder or package.
There is no way in general to find /all/ derived classes - it's an unbounded
set over time. It should be possible to find all the derived classes in a
specific source folder (or other resource) at a given moment in time, though.
Eclipse (as voorth stated) and Netbeans both have code to do show class
hierarchies, and they are open source.

Signature
Lew