Does anyone have any experience with using ClassLoader? If so, let's say I read the name of some class from a text file and then load it, what methods will the newly loaded class have available? All of its methods? Or just the ones common to it and Object?
If only the common methods will be available, what if I compiled into the main application an abstract interface for any classes I will be loading, and have those classes implement that interface? Will those classes have the methods in the interface available when loaded?