I need to find if a class is inheriting other class using Javaparser's getExtendedType method. Can someone point the correct syntax for this and also the logic to find it recursively.
Suppose class A is extending class B which in turn is extending class C, I want to start with A and reach class C.
Thanks.