Example usage for java.lang ClassLoader subclass-usage

List of usage examples for java.lang ClassLoader subclass-usage

Introduction

In this page you can find the example usage for java.lang ClassLoader subclass-usage.

Usage

From source file com.thoughtworks.go.agent.common.util.ParentClassAccessFilteringClassloader.java

/**
 * This classloader allows loading of classes from parent classloader ONLY for classes mentioned in permitted-classes list
 * if given empty list of classes, it will allow loading of any class
 */
public final class ParentClassAccessFilteringClassloader extends ClassLoader {
    private static final Log LOG = LogFactory.getLog(ParentClassAccessFilteringClassloader.class);

From source file ZipClassLoader.java

public class ZipClassLoader extends ClassLoader {
    // This code was posted on a forum by "leukbr" on March 30, 2001.
    // http://forums.sun.com/thread.jspa?threadID=360060&forumID=31
    // I've modified it substantially to include a thread that keeps the file
    // open for OPEN_TIME milliseconds so time isn't wasted continually
    // opening and closing the file.

From source file org.siyapath.task.TaskClassLoader.java

/**
 * Is responsible for loading classes given the bytes that make up the class
 * data sent by user
 */
public class TaskClassLoader extends ClassLoader {

From source file net.contextfw.web.application.internal.development.ReloadingClassLoader.java

public class ReloadingClassLoader extends ClassLoader {

    private final ReloadingClassLoaderConf conf;

    private final Map<String, Class<?>> cache = new HashMap<String, Class<?>>();

From source file framework.ResourceStoreClassLoader.java

/**
 * A ClassLoader backed by an array of ResourceStores
 * 
 * @author tcurdt
 */
public final class ResourceStoreClassLoader extends ClassLoader {

From source file com.l2jfree.gameserver.util.JarClassLoader.java

/**
 * This is a class loader for the dynamic extensions used by DynamicExtension
 * class.
 * 
 * @version $Revision: $ $Date: $
 * @author galun

From source file gridool.deployment.GridPerNodeClassLoader.java

/**
 * 
 * <DIV lang="en"></DIV>
 * <DIV lang="ja"></DIV>
 * 
 * @author Makoto YUI (yuin405@gmail.com)

From source file org.wisdom.test.shared.InVivoClassLoader.java

/**
 * A classloader responsible for loading the test classes and finding classes from the application bundles.
 */
public class InVivoClassLoader extends ClassLoader {
    private final BundleContext context;
    private final String testClass;

From source file net.ion.radon.cload.stores.ResourceStoreClassLoader.java

/**
 * A ClassLoader backed by an array of ResourceStores
 */
public final class ResourceStoreClassLoader extends ClassLoader {

    private final Log log = LogFactory.getLog(ResourceStoreClassLoader.class);

From source file org.apache.felix.ipojo.manipulation.ManipulatedClassLoader.java

/**
 * A classloader used to load manipulated classes.
 */
public class ManipulatedClassLoader extends ClassLoader {

    private String name;