public class

ClassLoaderWithRepository

extends ClassLoader
java.lang.Object
   ↳ java.lang.ClassLoader
     ↳ com.sun.jmx.remote.util.ClassLoaderWithRepository

Summary

Public Constructors
ClassLoaderWithRepository(ClassLoaderRepository clr, ClassLoader cl2)
Protected Methods
Class findClass(String name)
Finds the class with the specified binary name.
[Expand]
Inherited Methods
From class java.lang.ClassLoader
From class java.lang.Object

Public Constructors

public ClassLoaderWithRepository (ClassLoaderRepository clr, ClassLoader cl2)

Protected Methods

protected Class findClass (String name)

Finds the class with the specified binary name. This method should be overridden by class loader implementations that follow the delegation model for loading classes, and will be invoked by the loadClass method after checking the parent class loader for the requested class. The default implementation throws a ClassNotFoundException.

Parameters
name The binary name of the class
Returns
  • The resulting Class object