|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.ClassLoader org.apache.bcel.util.ClassLoader
public class ClassLoader
Drop in replacement for the standard class loader of the JVM. You can use it in conjunction with the JavaWrapper to dynamically modify/create classes as they're requested.
This class loader recognizes special requests in a distinct format, i.e., when the name of the requested class contains with "$$BCEL$$" it calls the createClass() method with that name (everything bevor the $$BCEL$$ is considered to be the package name. You can subclass the class loader and override that method. "Normal" classes class can be modified by overriding the modifyClass() method which is called just before defineClass().
There may be a number of packages where you have to use the default class loader (which may also be faster). You can define the set of packages where to use the system class loader in the constructor. The default value contains "java.", "sun.", "javax."
JavaWrapper
,
ClassPath
Field Summary | |
---|---|
static String[] |
DEFAULT_IGNORED_PACKAGES
|
Constructor Summary | |
---|---|
ClassLoader()
Ignored packages are by default ( "java.", "sun.", "javax."), i.e. |
|
ClassLoader(ClassLoader deferTo)
|
|
ClassLoader(ClassLoader deferTo,
String[] ignored_packages)
|
|
ClassLoader(String[] ignored_packages)
|
Method Summary | |
---|---|
protected JavaClass |
createClass(String class_name)
Override this method to create you own classes on the fly. |
protected Class |
loadClass(String class_name,
boolean resolve)
|
protected JavaClass |
modifyClass(JavaClass clazz)
Override this method if you want to alter a class before it gets actually loaded. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String[] DEFAULT_IGNORED_PACKAGES
Constructor Detail |
---|
public ClassLoader()
public ClassLoader(ClassLoader deferTo)
deferTo
- delegate class loader to use for ignored packagespublic ClassLoader(String[] ignored_packages)
ignored_packages
- classes contained in these packages will be loaded
with the system class loaderpublic ClassLoader(ClassLoader deferTo, String[] ignored_packages)
ignored_packages
- classes contained in these packages will be loaded
with the system class loaderdeferTo
- delegate class loader to use for ignored packagesMethod Detail |
---|
protected Class loadClass(String class_name, boolean resolve) throws ClassNotFoundException
loadClass
in class ClassLoader
ClassNotFoundException
protected JavaClass modifyClass(JavaClass clazz)
protected JavaClass createClass(String class_name)
class_name
- compressed byte code with "$$BCEL$$" in it
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |