kilim.KilimClassLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kilim Show documentation
Show all versions of kilim Show documentation
Coroutines, continuations, fibers, actors and message passing for the JVM
// Copyright 2011 by sriram - offered under the terms of the MIT License
package kilim;
/**
* Extends Classloader just to have access to the (protected) findLoadedClass method
*/
public class KilimClassLoader extends ClassLoader {
public KilimClassLoader() {
super(KilimClassLoader.class.getClassLoader());
}
public boolean isLoaded(String className) {
return super.findLoadedClass(className) != null;
}
}