|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.bcel.util.SyntheticRepository
public class SyntheticRepository
This repository is used in situations where a Class is created
outside the realm of a ClassLoader. Classes are loaded from
the file systems using the paths specified in the given
class path. By default, this is the value returned by
ClassPath.getClassPath().
It is designed to be used as a singleton, however it
can also be used with custom classpaths.
/**
Abstract definition of a class repository. Instances may be used
to load classes from different sources and may be used in the
Repository.setRepository method.
Repository
,
Serialized FormMethod Summary | |
---|---|
void |
clear()
Clear all entries from cache. |
JavaClass |
findClass(String className)
Find an already defined (cached) JavaClass object by name. |
ClassPath |
getClassPath()
ClassPath associated with the Repository. |
static SyntheticRepository |
getInstance()
|
static SyntheticRepository |
getInstance(ClassPath classPath)
|
JavaClass |
loadClass(Class clazz)
Find the JavaClass object for a runtime Class object. |
JavaClass |
loadClass(String className)
Find a JavaClass object by name. |
void |
removeClass(JavaClass clazz)
Remove class from repository |
void |
storeClass(JavaClass clazz)
Store a new JavaClass instance into this Repository. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static SyntheticRepository getInstance()
public static SyntheticRepository getInstance(ClassPath classPath)
public void storeClass(JavaClass clazz)
storeClass
in interface Repository
public void removeClass(JavaClass clazz)
removeClass
in interface Repository
public JavaClass findClass(String className)
findClass
in interface Repository
public JavaClass loadClass(String className) throws ClassNotFoundException
loadClass
in interface Repository
className
- the name of the class
ClassNotFoundException
- if the class is not in the
Repository, and could not be found on the classpathpublic JavaClass loadClass(Class clazz) throws ClassNotFoundException
loadClass
in interface Repository
clazz
- the runtime Class object
ClassNotFoundException
- if the class is not in the
Repository, and its representation could not be foundClass
public ClassPath getClassPath()
getClassPath
in interface Repository
public void clear()
clear
in interface Repository
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |