Save This Page
Home » spring-framework-2.5.4 » org.springframework » aop » [javadoc | source]
org.springframework.aop
public interface: Pointcut [javadoc | source]

All Known Implementing Classes:
    TransactionAttributeSourcePointcut, ComposablePointcut, TruePointcut, GetterPointcut, AbstractRegexpMethodPointcut, ExpressionPointcut, Perl5RegexpMethodPointcut, JdkRegexpMethodPointcut, DynamicMethodMatcherPointcut, SetterPointcut, DynamicMethodMatcherPointcutAdvisor, StaticMethodMatcherPointcutAdvisor, StaticMethodMatcherPointcut, NameMatchMethodPointcut, ControlFlowPointcut, PerTargetInstantiationModelPointcut, AspectJExpressionPointcut, AnnotationMatchingPointcut, UnionPointcut, AbstractExpressionPointcut

Core Spring pointcut abstraction.

A pointcut is composed of a ClassFilter and a MethodMatcher . Both these basic terms and a Pointcut itself can be combined to build up combinations (e.g. through org.springframework.aop.support.ComposablePointcut ).

Field Summary
 Pointcut TRUE    Canonical Pointcut instance that always matches. 
Method from org.springframework.aop.Pointcut Summary:
getClassFilter,   getMethodMatcher
Method from org.springframework.aop.Pointcut Detail:
 public ClassFilter getClassFilter()
    Return the ClassFilter for this pointcut.
 public MethodMatcher getMethodMatcher()
    Return the MethodMatcher for this pointcut.