Package org.nuxeo.osgi.application
Interface MutableClassLoader
-
- All Known Subinterfaces:
DevMutableClassLoader
- All Known Implementing Classes:
MutableClassLoaderDelegate
,NuxeoDevWebappClassLoader
,NuxeoWebappClassLoader
public interface MutableClassLoader
- Since:
- 5.4.2
- Author:
- Bogdan Stefanescu
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addURL(URL url)
ClassLoader
getClassLoader()
Class<?>
loadClass(String startupClass)
-
-
-
Method Detail
-
addURL
void addURL(URL url)
-
getClassLoader
ClassLoader getClassLoader()
-
loadClass
Class<?> loadClass(String startupClass) throws ClassNotFoundException
- Parameters:
startupClass
- The binary name of the class- Returns:
- The resulting Class object
- Throws:
ClassNotFoundException
- If the class was not found
-
-