List of usage examples for java.lang ClassLoader subclass-usage
From source file org.zxg.hotupdate.HotUpdateClassLoader.java
/** * * @author Xianguang Zhou <xianguang.zhou@outlook.com> */ class HotUpdateClassLoader extends ClassLoader implements FileListener {
From source file gridool.deployment.PeerClassLoader.java
/**
* Per-request class loader that delegates per-node class loader.
* <DIV lang="en"></DIV>
* <DIV lang="ja"></DIV>
*
* @author Makoto YUI (yuin405@gmail.com)
From source file com.ikon.util.cl.FilesystemClassLoader.java
public class FilesystemClassLoader extends ClassLoader implements MultipleClassLoader { private static Logger log = LoggerFactory.getLogger(FilesystemClassLoader.class); private File file = null; public FilesystemClassLoader(File file) throws IOException { super();
From source file com.openkm.util.cl.FilesystemClassLoader.java
public class FilesystemClassLoader extends ClassLoader implements MultipleClassLoader { private static Logger log = LoggerFactory.getLogger(FilesystemClassLoader.class); private File file = null; public FilesystemClassLoader(File file) throws IOException { super();
From source file org.eclipse.gemini.blueprint.util.BundleDelegatingClassLoader.java
/**
* ClassLoader backed by an OSGi bundle. Provides the ability to use a separate
* class loader as fall back.
*
* Contains facilities for tracing class loading behaviour so that issues can be
* easily resolved.
From source file hu.bme.mit.sette.common.tasks.JaCoCoClassLoader.java
/** * A class loader which loads and instruments classes for JaCoCo. */ public final class JaCoCoClassLoader extends ClassLoader { private static final Logger logger = LoggerFactory.getLogger(JaCoCoClassLoader.class);
From source file org.arsenal.framework.core.loader.ShadowingClassLoader.java
public class ShadowingClassLoader extends ClassLoader { private final Set<String> excludedPackages = new HashSet<String>(); private final Set<String> excludedClasses = new HashSet<String>();
From source file org.evosuite.instrumentation.InstrumentingClassLoader.java
/**
* <em>Note:</em> Do not inadvertently use multiple instances of this class in
* the application! This may lead to hard to detect and debug errors. Yet this
* class cannot be an singleton as it might be necessary to do so...
*
* @author roessler
From source file uk.org.lidalia.testutils.SimpleClassloader.java
public class SimpleClassloader extends ClassLoader { private final ClassLoader realClassLoader = getClass().getClassLoader(); private SimpleClassloader(ClassLoader parent) { super(parent); }
From source file org.efaps.admin.program.esjp.EFapsClassLoader.java
/**
* This Class extends the ClassLoader of java, to be able to load Classes on
* demand from the eFaps Database.
*
* @author The eFaps Team
*