| java.lang.Object org.quartz.simpl.InitThreadContextClassLoadHelper
Method Summary | |
public URL | getResource(String name) Finds a resource with a given name. | public InputStream | getResourceAsStream(String name) Finds a resource with a given name. | public void | initialize() Called to give the ClassLoadHelper a chance to initialize itself,
including the oportunity to "steal" the class loader off of the calling
thread, which is the thread that is initializing Quartz. | public Class | loadClass(String name) Return the class with the given name. |
getResource | public URL getResource(String name)(Code) | | Finds a resource with a given name. This method returns null if no
resource with this name is found.
Parameters: name - name of the desired resource a java.net.URL object |
getResourceAsStream | public InputStream getResourceAsStream(String name)(Code) | | Finds a resource with a given name. This method returns null if no
resource with this name is found.
Parameters: name - name of the desired resource a java.io.InputStream object |
initialize | public void initialize()(Code) | | Called to give the ClassLoadHelper a chance to initialize itself,
including the oportunity to "steal" the class loader off of the calling
thread, which is the thread that is initializing Quartz.
|
|
|