Public Member Functions | |
LinkingClassLoader () | |
LinkingClassLoader (ClassLoader parent) | |
Class<?> | loadClass (String name) throws ClassNotFoundException |
tit.utility.LinkingClassLoader.LinkingClassLoader | ( | ) |
Construcs a new LinkingClassLoader
.
tit.utility.LinkingClassLoader.LinkingClassLoader | ( | ClassLoader | parent | ) |
Construcs a new LinkingClassLoader
.
parent | The parent class loader. |
Class<?> tit.utility.LinkingClassLoader.loadClass | ( | String | name | ) | throws ClassNotFoundException |
Loads the class with the specified binary name and links it. This method searches for classes in the same manner as the loadClass(String, boolean)
method. It is invoked by the Java virtual machine to resolve class references. Invoking this method is equivalent to invoking loadClass(name, true)
.
name | The binary name of the class. |
Class
object. ClassNotFoundException | Is thrown when the class was not found. |