finding all derived class given parent class Permanently deleted user Created July 25, 2007 00:55 HiI want to find all the derived classes from a package or source path. is there any API in openApi that can do this, any examples of useage...thanks
try this:
SearchScope scope = GlobalSearchScope.packageScope(yourPackage, true); ClassInheritorsSearch query = ClassInheritorsSearch.search(yourClass, scope); ]]>