All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kilim.KilimClassLoader Maven / Gradle / Ivy

Go to download

Coroutines, continuations, fibers, actors and message passing for the JVM

There is a newer version: 2.0.2-jdk7
Show newest version
// 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy