Example usage for java.net URLClassLoader subclass-usage

List of usage examples for java.net URLClassLoader subclass-usage

Introduction

In this page you can find the example usage for java.net URLClassLoader subclass-usage.

Usage

From source file com.gargoylesoftware.htmlunit.html.applets.AppletClassLoader.java

/**
 * <span style="color:red">INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.</span><br>
 * Class loader for loading applets.
 *
 * @author Marc Guillemot
 * @author Ronald Brill

From source file org.ebayopensource.turmeric.tools.codegen.util.JavaToolsClassLoader.java

/**
 * Work in Progress.
 * Potential replacement for {@link CodeGenClassLoader}
 */
public class JavaToolsClassLoader extends URLClassLoader {
    public static ClassLoader createIfNeeded() throws CodeGenFailedException {

From source file com.mgmtp.perfload.core.client.lang.LocalFirstClassLoader.java

/**
 * {@link URLClassLoader} implementation that tries to load classes locally before delegating to the
 * parent class loader. This is necessary for plugin-like architectures where a class and its
 * dependencies need to be loaded in isolation.
 * 
 * @author rnaegele

From source file org.impalaframework.spring.classloader.CustomURLClassLoader.java

public class CustomURLClassLoader extends URLClassLoader {

    private static final Log logger = LogFactory.getLog(CustomURLClassLoader.class);

    private Map<String, Class<?>> loadedClasses = new ConcurrentHashMap<String, Class<?>>();

From source file org.cg.dao.webcontainer.tomcat.WebAppClassLoader.java

/**
 * 
 * A class loader that combines a plugin class loader with the tomcat class
 * 
 * loader
 */

From source file org.mc4j.ems.connection.support.classloader.NestedJarClassLoader.java

/**
 * <p>This classloader is able to load classes from the contents of jar files available
 * in the parent classloader. This mechanism creates support for nested jar file
 * deployment.</p>
 * <p/>
 * <p>To use this classloader, create a jar with other jars in it and put the main jar

From source file org.openflexo.toolbox.JarInDirClassLoader.java

/**
 * 
 * This class Loader looks for classes and resources in a set of jars found in a set of directories
 * Any Jar in the directory List ist 
 * 
 * Directories can anly be added to the list and not removed.

From source file org.sonar.core.plugins.ResourcesClassloader.java

/**
 * This class loader is used to load resources from a list of URLs - see SONAR-1861.
 */
public class ResourcesClassloader extends URLClassLoader {
    private Collection<URL> urls;

From source file org.sonar.core.classloaders.ResourcesClassLoader.java

/**
 * This class loader is used to load resources from a list of URLs - see SONAR-1861.
 */
public class ResourcesClassLoader extends URLClassLoader {
    private Collection<URL> urls;

From source file org.romaframework.core.classloader.RomaClassLoader.java

/**
 * Roma Class Loader. It overrides default class loading by reloading Roma annotation if any.
 * 
 * @author Luca Garulli (luca.garulli--at--assetdata.it)
 */
public class RomaClassLoader extends URLClassLoader {