| |
|
| java.lang.Object com.db4o.defragment.AvailableClassFilter
AvailableClassFilter | public class AvailableClassFilter implements StoredClassFilter(Code) | | Filter that accepts only StoredClass instances whose corresponding Java
class is currently known.
|
Method Summary | |
public boolean | accept(StoredClass storedClass) Will accept only classes whose corresponding platform class is known
to the configured classloader. |
AvailableClassFilter | public AvailableClassFilter()(Code) | | Will accept only classes that are known to the classloader that loaded
this class.
|
AvailableClassFilter | public AvailableClassFilter(ClassLoader loader)(Code) | | Will accept only classes that are known to the given classloader.
Parameters: loader - The classloader to check class names against |
accept | public boolean accept(StoredClass storedClass)(Code) | | Will accept only classes whose corresponding platform class is known
to the configured classloader.
Parameters: storedClass - The YapClass instance to be checked true if the corresponding platform class is known to the configured classloader, false otherwise |
|
|
|