finding all derived class given parent class Permanently deleted user 创建于 2007年07月25日 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); ]]>