Package com.zfabrik.components.java
Interface IJavaComponentClassLoader
- All Known Implementing Classes:
JavaComponentClassLoader
public interface IJavaComponentClassLoader
Interface of the class loaders instantiated for Java components.
- Author:
- hb
-
Method Summary
Modifier and TypeMethodDescriptionGet the resource handle of the Java component, this loader belongs to.getName()
Get the name of the classloader that is useful for displayGet parent loadersboolean
Get whether this loader is still in operation.
-
Method Details
-
getName
String getName()Get the name of the classloader that is useful for display -
getJavaComponentHandle
IResourceHandle getJavaComponentHandle()Get the resource handle of the Java component, this loader belongs to. -
isOperational
boolean isOperational()Get whether this loader is still in operation. After invalidation of a Java component for example because of a synchronization, its loader become unoperational and will not provide resources or classes anymore. -
getParents
List<ClassLoader> getParents()Get parent loaders
-