ORG.oclc.jassi
Class  JaSSIClassLoader
java.lang.Object
  |
  +--java.lang.ClassLoader
        |
        +--ORG.oclc.jassi.JaSSIClassLoader
- public class JaSSIClassLoader- extends ClassLoader
The JaSSIClassLoader class is an implementation of the abstract class
 ClassLoader intended to allow dynamic loading of classes and caching
 of those classes once loaded.
- See Also: 
- ClassLoader
 
| Method Summary | 
|  Class | loadClass(String name,
          boolean resolve)Resolves the specified name to a class and caches the loaded class
 in a hashtable for later use.
 | 
 
| Methods inherited from class java.lang.ClassLoader | 
| defineClass, 
defineClass, 
defineClass, 
definePackage, 
findClass, 
findLibrary, 
findLoadedClass, 
findResource, 
findResources, 
findSystemClass, 
getPackage, 
getPackages, 
getParent, 
getResource, 
getResourceAsStream, 
getResources, 
getSystemClassLoader, 
getSystemResource, 
getSystemResourceAsStream, 
getSystemResources, 
loadClass, 
resolveClass, 
setSigners | 
 
| Methods inherited from class java.lang.Object | 
| clone, 
equals, 
finalize, 
getClass, 
hashCode, 
notify, 
notifyAll, 
toString, 
wait, 
wait, 
wait | 
 
JaSSIClassLoader
public JaSSIClassLoader()
loadClass
public Class loadClass(String name,
                       boolean resolve)
                throws ClassNotFoundException
- Resolves the specified name to a class and caches the loaded class
 in a hashtable for later use.- 
- Parameters:
- name- the name of the desired class to load.
- resolve- true if the class needs to be resolved.
- Returns:
- the loaded Class.
- Throws:
- ClassNotFoundException -  
- Overrides:
- loadClass in class ClassLoader