org.springframework.aop.aspectj
static class: AbstractAspectJAdvice.AdviceExcludingMethodMatcher [javadoc |
source]
java.lang.Object
org.springframework.aop.support.StaticMethodMatcher
org.springframework.aop.aspectj.AbstractAspectJAdvice$AdviceExcludingMethodMatcher
All Implemented Interfaces:
MethodMatcher
MethodMatcher that excludes the specified advice method.
Also see:
- AbstractAspectJAdvice#buildSafePointcut()
| Method from org.springframework.aop.aspectj.AbstractAspectJAdvice$AdviceExcludingMethodMatcher Summary: |
|---|
|
matches |
| Methods from org.springframework.aop.support.StaticMethodMatcher: |
|---|
|
isRuntime, matches |
| Method from org.springframework.aop.aspectj.AbstractAspectJAdvice$AdviceExcludingMethodMatcher Detail: |
public boolean matches(Method method,
Class targetClass) {
return !this.adviceMethod.equals(method);
}
|