public interface IClassResolver
| Modifier and Type | Method and Description |
|---|---|
ClassLoader |
getClassLoader()
Returns the
ClassLoader to be used for resolving classes |
Iterator<URL> |
getResources(String name)
Tries to load all the resources by the name that is given.
|
Class<?> |
resolveClass(String classname)
Resolves a class by name (which may or may not involve loading it; thus the name class
*resolver* not *loader*).
|
Class<?> resolveClass(String classname) throws ClassNotFoundException
classname - Fully qualified classname to findClassNotFoundExceptionIterator<URL> getResources(String name)
name - ClassLoader getClassLoader()
ClassLoader to be used for resolving classesClassLoader to be used for resolving classesCopyright © 2006–2021 Apache Software Foundation. All rights reserved.