org.apache.axis.utils.cache
public class ClassCache extends Object
Constructor Summary | |
---|---|
ClassCache() |
Method Summary | |
---|---|
void | deregisterClass(String name)
Remove an entry from the cache.
|
boolean | isClassRegistered(String name)
Query a given class' cache status.
|
JavaClass | lookup(String className, ClassLoader cl)
Find the cached JavaClass entry for this class, creating one
if necessary. |
void | registerClass(String name, Class cls)
Register a class in the cache. |
Parameters: name the name of the class to remove.
Parameters: name a class name
Returns: true if the class is in the cache, false otherwise
Parameters: className name of the class desired cl ClassLoader to use if we need to load the class
Returns: JavaClass entry
Parameters: name the name of the class. cls a Java Class.