I have a class called MyClass. Is it possible to programmatically find a list of classes that have inherited MyClass? I know we can use reflection to discover all the superclasses of a given class, but can we find the subclasses?

Is it even theoretically possible to do so (as I haven't heard of a class being aware of when it is being extended) ?

link|improve this question

1  
Thanks. Missed it in search. – Shailesh Tainwala Apr 27 '11 at 11:19
feedback

1 Answer

up vote 4 down vote accepted

You might want to look at the reflections library


Using Reflections you can query your metadata such as:

  • get all subtypes of some type
  • get all types/methods/fields annotated with some annotation, w/o annotation parameters matching
  • get all resources matching matching a regular expression
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.