Example usage for java.lang ClassLoader subclass-usage

List of usage examples for java.lang ClassLoader subclass-usage

Introduction

In this page you can find the example usage for java.lang ClassLoader subclass-usage.

Usage

From source file streaming.common.HdfsClassLoader.java

/**
 * A {@link ClassLoader} that reads its class data from a jar file stored in HDFS.
 *
 * @author jeff@opower.com
 */
public class HdfsClassLoader extends ClassLoader {

From source file com.jaspersoft.jasperserver.api.engine.jasperreports.util.JarsClassLoader.java

/**
 * @author Lucian Chirita (lucianc@users.sourceforge.net)
 * @version $Id: JarsClassLoader.java 47331 2014-07-18 09:13:06Z kklein $
 */
public class JarsClassLoader extends ClassLoader {
    private static final Log log = LogFactory.getLog(JarsClassLoader.class);

From source file com.opensymphony.xwork2.util.classloader.ReloadingClassLoader.java

/**
 * The ReloadingClassLoader uses a delegation mechanism to allow
 * classes to be reloaded. That means that loadClass calls may
 * return different results if the class was changed in the underlying
 * ResourceStore.
 * <p/>

From source file com.ikon.util.cl.BinaryClassLoader.java

public class BinaryClassLoader extends ClassLoader implements MultipleClassLoader {
    private static Logger log = LoggerFactory.getLogger(BinaryClassLoader.class);
    private Hashtable<String, Class<?>> classes = new Hashtable<String, Class<?>>();
    private Hashtable<String, byte[]> resources = new Hashtable<String, byte[]>();
    private String mainClassName = null;

From source file com.openkm.util.cl.BinaryClassLoader.java

public class BinaryClassLoader extends ClassLoader implements MultipleClassLoader {
    private static Logger log = LoggerFactory.getLogger(BinaryClassLoader.class);
    private Hashtable<String, Class<?>> classes = new Hashtable<String, Class<?>>();
    private Hashtable<String, byte[]> resources = new Hashtable<String, byte[]>();
    private String mainClassName = null;

From source file org.ms123.common.libhelper.FileSystemClassLoader.java

/**
 */
public class FileSystemClassLoader extends ClassLoader {

    private File[] locations;
    private String[] includePattern;

From source file org.evosuite.instrumentation.testability.TestabilityTransformationClassLoader.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 org.evosuite.instrumentation.TestabilityTransformationClassLoader.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 org.vosao.business.impl.plugin.PluginClassLoader.java

public class PluginClassLoader extends ClassLoader {

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

    private SystemService systemService;
    private Dao dao;

From source file io.zipi.common.plugin.PluginClassLoader.java

/**
 * A classloader that is capable of loading classes from an apiman
 * plugin artifact.
 *
 * @author eric.wittmann@redhat.com
 */