Package org.zeroturnaround.javarebel
Interface ClassFilter
- All Known Implementing Classes:
PackageClassFilter
public interface ClassFilter
A simple class filter callback that can either match or not match a class
depending on its name, classloader and resource.
- Since:
- 1.2
- Author:
- Jevgeni Kabanov (ekabanov@zeroturnaround.com)
-
Method Summary
Modifier and TypeMethodDescriptionbooleanmatches(ClassLoader cl, String className, Resource resource)
-
Method Details
-
matches
- Parameters:
cl- the ClassLoader class should be loaded inclassName- the class nameresource- the resource- Returns:
- true if the class matches the filter, false otherwise.
-