List of usage examples for java.lang ClassLoader subclass-usage
From source file io.apiman.common.plugin.PluginClassLoader.java
/**
* A classloader that is capable of loading classes from an apiman
* plugin artifact.
*
* @author eric.wittmann@redhat.com
*/
From source file org.bimserver.plugins.JarClassLoader.java
public class JarClassLoader extends ClassLoader { private static final Logger LOGGER = LoggerFactory.getLogger(JarClassLoader.class); private File jarFile; private Map<String, byte[]> map; private Map<String, Class<?>> loadedClasses = new HashMap<String, Class<?>>();
From source file hudson.remoting.DummyClassLoader.java
/**
* Used to load a dummy class
* out of nowhere, to test {@link RemoteClassLoader} by creating a class
* that only exists on one side of the channel but not the other.
*
* <p>
From source file at.treedb.util.SevenZip.java
/**
* <p>
* Helper class to acccess an 7-zip archive.
* </p>
*
* @author Peter Sauer
From source file org.latticesoft.util.common.ClassUtil.java
/**
* <p>This utility class helps to load class definitation from
* class file directly or bytes read from the class file or
* string representation of the bytes.</p>
* <p> For testing purpose we need to create a simple javabean:
* <code>TestBean</code></p>
From source file org.squidy.common.dynamiccode.HotDeployClassLoader.java
/**
* <code>HotDeployClassLoader</code>.
*
* <pre>
* Date: Aug 21, 2009
* Time: 12:32:25 PM
From source file com.opensymphony.webwork.util.classloader.ReloadingClassLoader.java
/** * @author tcurdt */ public class ReloadingClassLoader extends ClassLoader { private final static Log log = LogFactory.getLog(ReloadingClassLoader.class);
From source file dk.netarkivet.common.utils.batch.ByteJarLoader.java
/** * ByteJarLoader is a ClassLoader that stores java classes in a map where * the key to the map is the class name, and the value is the class stored * as a byte array. */ @SuppressWarnings("serial")
From source file com.sqewd.open.dal.core.reflect.EntityClassLoader.java
/**
* @author subhagho
*
* TODO: <comment>
*
*/
From source file org.apache.nutch.webapp.common.PluginResourceLoader.java
/** * PluginResourceLoader is capable of loading plugged in resources. */ public class PluginResourceLoader extends ClassLoader { public class ThrowAwayClassLoader extends ClassLoader {