List of usage examples for java.lang ClassLoader subclass-usage
From source file com.galeoconsulting.leonardinius.api.impl.ChainingClassLoader.java
/** * A class loader that delegates to a list of class loaders. The order is important as classes and resources will be * loaded from the first classloader that can load them. */ class ChainingClassLoader extends ClassLoader { // ------------------------------ FIELDS ------------------------------
From source file MainClass.java
class URLClassLoader extends ClassLoader { Hashtable cache = new Hashtable(); URL url; public URLClassLoader(URL u) { this.url = u;
From source file org.nuxeo.ecm.webengine.loader.store.ResourceStoreClassLoader.java
/**
* The class loader allows modifying the stores (adding/removing).
* Mutable operations are thread safe.
*
* @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
*/
From source file com.wavemaker.tools.util.CFClassLoader.java
/** * A ClassLoader that loads a list of resources * * @author Seung Lee */ public class CFClassLoader extends ClassLoader {
From source file com.thoughtworks.go.util.NestedJarClassLoader.java
/** * Loads the classes from the given jars. */ public class NestedJarClassLoader extends ClassLoader { private static final Logger LOGGER = org.slf4j.LoggerFactory.getLogger(NestedJarClassLoader.class);
From source file net.ion.radon.cload.ReloadingClassLoader.java
/**
* The ReloadingClassLoader uses a delegation mechansim to allow
* classes to be reloaded. That means that loadClass calls may
* return different results if the class was changed in the underlying
* ResourceStore.
*
From source file org.impalaframework.classloader.FileSystemClassLoader.java
/**
* <code>ClassLoader</code> which resolves a particular class or resource from
* one of a set of locations on the file system. Note that this class is
* abstract as it does not override the superclass's <code>loadClass()</code>
* method.
*
From source file com.wabacus.util.WabacusClassLoader.java
public class WabacusClassLoader extends ClassLoader { private static Log log = LogFactory.getLog(WabacusClassLoader.class); private ClassLoader parentLoader; private List<String> classRepository = new ArrayList<String>();
From source file org.pentaho.platform.repository.solution.dbbased.DbRepositoryClassLoader.java
public class DbRepositoryClassLoader extends ClassLoader { protected static final Log logger = LogFactory.getLog(SolutionRepositoryBase.class); private static final HashMap resourceMap = new HashMap(); String path;
From source file org.cloudata.core.common.util.ByteCodeClassLoader.java
/** * @author jindolk * */ public class ByteCodeClassLoader extends ClassLoader { static final Log LOG = LogFactory.getLog(ByteCodeClassLoader.class.getName());