I have two lines:
String a="org.test.A"; String b="org.test.B";
I get a Reflection class
Class aClass = Class.forName(a);
I want aClass to extend b, for example:
Class okClass=aClass.extends(b);//how to implement this?
how to implement this?
How to get okClass?
thanks!
java
Koerr
source share