| java.net.URLClassLoader org.objectweb.jonas.server.JClassLoader
JClassLoader | public class JClassLoader extends URLClassLoader (Code) | | This class implements a URLClassLoader, that permits to add some URLs in it.
author: Ludovic Bert author: Florent Benoit |
JClassLoader | public JClassLoader(String name, URL[] urls, ClassLoader parent)(Code) | | Constructs a new ClassLoader with the specified URLs.
Parameters: name - ClassLoader name (used for Display) Parameters: urls - the URLs to add at the ClassLoader creation. Parameters: parent - parent ClassLoader, null if no parent. |
JClassLoader | public JClassLoader(String name, URL[] urls)(Code) | | Constructs a new ClassLoader with the specified URLs.
Uses the default delegation parent classloader.
Parameters: name - ClassLoader name (used for Display) Parameters: urls - the URLs to add at the ClassLoader creation. |
addURL | public void addURL(URL url)(Code) | | Add the specified URL to this ClassLoader.
Parameters: url - the URL to add to this ClassLoader. |
addURLs | public void addURLs(URL[] urls)(Code) | | Add the specified URLs to this ClassLoader.
Parameters: urls - the URLs to add to this ClassLoader. |
getClassPath | public String getClassPath()(Code) | | Get the class path of this classloader
the class path of this classloader |
printURLs | public void printURLs()(Code) | | Display all the URLs from the class loader
|
toString | public String toString()(Code) | | Displays useful information
information |
|
|