List of usage examples for java.net URLClassLoader subclass-usage
From source file org.apache.river.container.classloading.VirtualFileSystemClassLoader.java
/** * * @author trasukg */ public class VirtualFileSystemClassLoader extends URLClassLoader {
From source file org.fusesource.meshkeeper.distribution.PluginClassLoader.java
import org.fusesource.meshkeeper.util.internal.IOSupport; /** * PluginClassLoader * <p> * Description:
From source file org.apache.openejb.util.classloader.URLClassLoaderFirst.java
public class URLClassLoaderFirst extends URLClassLoader { private static final ReentrantLock LOCK; // log4j is optional, moreover it will likely not work if not skipped and loaded by a temp classloader private static final boolean SKIP_LOG4J = "true".equals(
From source file org.eclipse.wb.internal.core.utils.reflect.ProjectClassLoader.java
/**
* Implementation of {@link URLClassLoader} for loading classes from {@link IJavaProject}.
*
* @author scheglov_ke
* @coverage core.util
*/
From source file com.stratuscom.harvester.classloading.VirtualFileSystemClassLoader.java
/** * * @author trasukg */ public class VirtualFileSystemClassLoader extends URLClassLoader {
From source file org.spoutcraft.launcher.launch.MinecraftClassLoader.java
public class MinecraftClassLoader extends URLClassLoader { private HashMap<String, Class<?>> loadedClasses = new HashMap<String, Class<?>>(10000); private HashSet<String> preloaded = new HashSet<String>(); private HashMap<String, File> classLocations = new HashMap<String, File>(10000); public MinecraftClassLoader(ClassLoader parent, File spoutcraft, File[] libraries) {
From source file com.dragome.callbackevictor.serverside.DragomeContinuationClassLoader.java
/**
* {@link URLClassLoader} with bytecode instrumentation for javaflow.
*
* <p>
* This class loader is useful where the application can set up multiple
* class loaders (such as in a container environment,
From source file org.openmrs.util.OpenmrsClassLoader.java
/** * This classloader knows about the current ModuleClassLoaders and will attempt to load classes from * them if needed */ public class OpenmrsClassLoader extends URLClassLoader {
From source file ffx.FFXClassLoader.java
/**
* Class loader able to load classes and DLLs with a higher priority from a
* given set of JARs. Its bytecode is Java 1.1 compatible to be loadable by old
* JVMs.
*
* @author Michael J. Schnieders; derived from work by Emmanuel Puybaret
From source file org.openmrs.module.ModuleClassLoader.java
/** * Standard implementation of module class loader. <br> * Code adapted from the Java Plug-in Framework (JPF) - LGPL - Copyright (C)<br> * 2004-2006 Dmitry Olshansky */ public class ModuleClassLoader extends URLClassLoader {