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 org.javascool.compiler.JVSClassLoader.java

/**
 * Chargeur de Classe pour Java's Cool. Il permet de charger une classe qui n'était pas dans le classpath
 * d'origine.
 *
 * @author Philippe VIENNE (PhilippeGeek@gmail.com)
 * @version 5.0

From source file org.teavm.flavour.mp.impl.ProxyClassLoader.java

/**
 *
 * @author Alexey Andreev
 */
public class ProxyClassLoader extends ClassLoader {
    private ProxyMethodInstrumentation instrumentation = new ProxyMethodInstrumentation();

From source file org.bimserver.plugins.EclipsePluginClassloader.java

public class EclipsePluginClassloader extends ClassLoader {

    private static final Logger LOGGER = LoggerFactory.getLogger(EclipsePluginClassloader.class);
    private final Map<String, Class<?>> loadedClasses = new HashMap<String, Class<?>>();
    private final File projectFolder;
    private File classFolder;

From source file testful.runner.RemoteClassLoader.java

/**
 * Remote class loader.
 * @author matteo
 */
public class RemoteClassLoader extends ClassLoader implements ElementWithKey<String> {

From source file org.apache.logging.log4j.core.selector.TestClassLoader.java

/**
 * ClassLoader that loads class in this package (or sub-package) by hand, otherwise delegating to the TCCL.
 *
 * @since 2.1
 */
public class TestClassLoader extends ClassLoader {

From source file de.smartics.maven.plugin.jboss.modules.util.classpath.AbstractProjectClassLoader.java

/**
 * Base implementation of class loaders that serve classes from the given
 * directories.
 */
public abstract class AbstractProjectClassLoader extends ClassLoader {
    // ********************************* Fields *********************************

From source file spring.osgi.context.internal.classloader.BundleDelegatingClassLoader.java

/**
 * ClassLoader backed by an OSGi bundle. Provides the ability to use a separate
 * class loader as fall back.
 * <p/>
 * Contains facilities for tracing class loading behaviour so that issues can be
 * easily resolved.

From source file org.sonar.java.bytecode.loader.SquidClassLoader.java

/**
 * Class loader, which is able to load classes from a list of JAR files and directories.
 */
public class SquidClassLoader extends ClassLoader implements Closeable {

    private final List<Loader> loaders;

From source file com.wavemaker.commons.classloader.ThrowawayFileClassLoader.java

/**
 * A ClassLoader that takes a File (as the root to search in), and searches for classes within that root. This does
 * everything to avoid ever loading classes into any other classloader. It takes a parent classloader as an option, but
 * only delegates to it if the class cannot be found in the local paths.
 * 
 * @author Matt Small

From source file com.wavemaker.common.util.ThrowawayFileClassLoader.java

/**
 * A ClassLoader that takes a File (as the root to search in), and searches for classes within that root. This does
 * everything to avoid ever loading classes into any other classloader. It takes a parent classloader as an option, but
 * only delegates to it if the class cannot be found in the local paths.
 * 
 * @author Matt Small