All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class ice.htmlbrowser.BrowserClassLoader

java.lang.Object
   |
   +----java.lang.ClassLoader
           |
           +----ice.htmlbrowser.BrowserClassLoader

public class BrowserClassLoader
extends ClassLoader

Method Index

 o getBrowserClassLoader(String, String)
 o getResourceAsStream(String)
 o getSecurityContext(ClassLoader)
 o loadClass(String, boolean)
Requests the class loader to load a class with the specified name.
 o loadJar(URL)
 o toString()

Methods

 o getBrowserClassLoader
 public static synchronized BrowserClassLoader getBrowserClassLoader(String key,
                                                                     String codebase)
 o loadClass
 public synchronized Class loadClass(String name,
                                     boolean resolve) throws ClassNotFoundException
Requests the class loader to load a class with the specified name. The loadClass method is called by the Java Virtual Machine when a class loaded by a class loader first references another class.

If the resolve flag is true, the method should call the resolveClass method on the resulting class object.

Parameters:
name - the name of the desired Class.
resolve - true if the Class must be resolved.
Returns:
the resulting Class, or null if it was not found.
Throws: ClassNotFoundException
if the class loader cannot find a definition for the class.
Overrides:
loadClass in class ClassLoader
 o loadJar
 public void loadJar(URL jarURL)
 o getSecurityContext
 public static Object getSecurityContext(ClassLoader loader)
 o getResourceAsStream
 public InputStream getResourceAsStream(String name)
Overrides:
getResourceAsStream in class ClassLoader
 o toString
 public String toString()
Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index