Package org.apache.bcel.util
Class ClassLoaderRepository
java.lang.Object
org.apache.bcel.util.ClassLoaderRepository
- All Implemented Interfaces:
Repository
The repository maintains information about which classes have been loaded.
It loads its data from the ClassLoader implementation passed into its constructor.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Clear all entries from cache.Find an already defined JavaClass.Gets the ClassPath associated with this RepositoryFinds the JavaClass instance for the given run-time class object.Lookup a JavaClass object from the Class Name provided.void
removeClass
(JavaClass clazz) Remove class from repositoryvoid
storeClass
(JavaClass clazz) Store a new JavaClass into this Repository.
-
Constructor Details
-
ClassLoaderRepository
-
-
Method Details
-
clear
Clear all entries from cache.- Specified by:
clear
in interfaceRepository
-
findClass
Find an already defined JavaClass.- Specified by:
findClass
in interfaceRepository
-
getClassPath
Description copied from interface:Repository
Gets the ClassPath associated with this Repository- Specified by:
getClassPath
in interfaceRepository
-
loadClass
Description copied from interface:Repository
Finds the JavaClass instance for the given run-time class object.- Specified by:
loadClass
in interfaceRepository
- Throws:
ClassNotFoundException
- if the class can't be found.
-
loadClass
Lookup a JavaClass object from the Class Name provided.- Specified by:
loadClass
in interfaceRepository
- Throws:
ClassNotFoundException
- if the class can't be found.
-
removeClass
Remove class from repository- Specified by:
removeClass
in interfaceRepository
-
storeClass
Store a new JavaClass into this Repository.- Specified by:
storeClass
in interfaceRepository
-