| A class loader that only loads resources from the given URLs,
and never from the system class loader or bootclasspath.
Designed to be used in conjunction with a StickyClassLoader
to ensure that classes are loaded from the URLs before anywhere
else.
A regular URLClassLoader first looks at its parent, then looks
at the bootclasspath, and only looks at the given URLs if the
class or resource couldn't be found in the other two.
version: $Id: StrictURLClassLoader.java 4255 2007-08-28 19:17:37Z mgricken $ |