Hi,
how do I get advantage of the generic information in Class.forName method?
I actually have the code:
Class<?> myClass= Class.forName(myString);
and I want a generic type for myClass (let T), so that later on I can create instances of myClass using:
T myInstance = myClass.newInstance();
How is this possible?