How can I load a class that is already on the class path, instantiate it, and also instantiate any inner classes defined within it?
EG:
public class
Class.forName("your classname").newInstance().
The inner classes will be instantiated only if the constructor instantiates them.