com.ibm.oti.shared
Interface SharedClassFilter
- public interface SharedClassFilter
See Also:
Method Summary
Modifier and Type | Method and Description |
---|---|
|
acceptFind(java.lang.String className)
Tests if the helper should try to find a specified class in the shared class cache
|
|
acceptStore(java.lang.String className)
Tests if a specified class should be stored in the shared class cache
|
Method Detail
acceptStore
- boolean acceptStore(java.lang.String className)
Tests if a specified class should be stored in the shared class cache
Parameters:
className
- String
The fully-qualified name of the class, with the package and class names separated by '.' Returns:
boolean
True if the class should be stored in the class cache, false otherwise.
acceptFind
- boolean acceptFind(java.lang.String className)
Tests if the helper should try to find a specified class in the shared class cache
Parameters:
className
- String
The fully-qualified name of the class, with the package and class names separated by '.' Returns:
boolean
True if the helper should try to find the class, false otherwise