public class

OrderClassLoaders

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

Summary

Public Constructors
OrderClassLoaders(ClassLoader cl1, 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 OrderClassLoaders (ClassLoader cl1, 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