Uses of Class
edu.rice.cs.plt.reflect.ComposedClassLoader

Packages that use ComposedClassLoader
edu.rice.cs.plt.reflect Facilities for loading and accessing Class objects and other reflection APIs. 
 

Uses of ComposedClassLoader in edu.rice.cs.plt.reflect
 

Methods in edu.rice.cs.plt.reflect that return ComposedClassLoader
static ComposedClassLoader ReflectUtil.mergeLoaders(ClassLoader first, ClassLoader second)
          Combine two class loaders by first matching classes in first, then delegating to second.
static ComposedClassLoader ReflectUtil.mergeLoaders(ClassLoader first, ClassLoader second, boolean blackList, String... firstPrefixes)
          Combine two class loaders by matching a subset of those in first, followed by a search in second.
static ComposedClassLoader ReflectUtil.mergeLoaders(ClassLoader first, ClassLoader second, String... firstIncludes)
          Combine two class loaders by matching specific classes (or class prefixes) from first, and delegating all other searches to second.