Package org.proxy4j.core.filter
Interface MethodFilter
-
- All Known Implementing Classes:
AnnotationFilter
public interface MethodFilterFilter used by proxy creators to select which methods should be intercepted.
- Author:
- Brennan Spies
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanaccept(Method method)Returns true if the given method should be intercepted.
-
-
-
Method Detail
-
accept
boolean accept(Method method)
Returns true if the given method should be intercepted.- Parameters:
method- The method to test- Returns:
- True if the argument method should be intercepted
-
-