public abstract class

DynamicMethodMatcherPointcut

extends DynamicMethodMatcher
implements Pointcut
java.lang.Object
   ↳ org.springframework.aop.support.DynamicMethodMatcher
     ↳ org.springframework.aop.support.DynamicMethodMatcherPointcut

Class Overview

Convenient superclass when we want to force subclasses to implement MethodMatcher interface, but subclasses will want to be pointcuts. The getClassFilter() method can be overriden to customize ClassFilter behaviour as well.

Summary

[Expand]
Inherited Fields
From interface org.springframework.aop.MethodMatcher
From interface org.springframework.aop.Pointcut
Public Constructors
DynamicMethodMatcherPointcut()
Public Methods
ClassFilter getClassFilter()
Return the ClassFilter for this pointcut.
final MethodMatcher getMethodMatcher()
Return the MethodMatcher for this pointcut.
[Expand]
Inherited Methods
From class org.springframework.aop.support.DynamicMethodMatcher
From class java.lang.Object
From interface org.springframework.aop.MethodMatcher
From interface org.springframework.aop.Pointcut

Public Constructors

public DynamicMethodMatcherPointcut ()

Public Methods

public ClassFilter getClassFilter ()

Return the ClassFilter for this pointcut.

Returns
  • the ClassFilter (never null)

public final MethodMatcher getMethodMatcher ()

Return the MethodMatcher for this pointcut.

Returns
  • the MethodMatcher (never null)