I want to create a list of all the names of the classes that Inherited from some super class.
For example: class A
, class B extends A
, class C extends A
, class D
. And if I search all the classes that inherited from A
I will get a list that contains {B,C}.
How can I do that?