JVM Languages
classlod.txt
Associated article: Eclipse & Custom Class Loaders
Tags: Open Source JVM Languages Design
Published source code accompanying the article by Greg Bednarek in which he examines class loaders in Java. Also see CLASSLOD.ZIP.
Eclipse & Custom Class Loaders
by Greg Bednarek
Listing One
try {
//Instantiate ClassLoader, passing the location (directory) of the class to
//load and the parent class loader
ClassLoader loader = new MacroClassLoader(classLocation,
this.getClass().getClassLoader());
//Load the class with the ...


