org.springframework.aop
Interface Pointcut

All Known Implementing Classes:
ComposablePointcut, ControlFlowPointcut, DynamicMethodMatcherPointcut, StaticMethodMatcherPointcut, TruePointcut, UnionPointcut

public interface Pointcut

Core Spring pointcut abstraction. A pointcut is composed of ClassFilters and MethodMatchers. Both these basic terms and a Pointcut itself can be combined to build up combinations.

Author:
Rod Johnson

Field Summary
static Pointcut TRUE
           
 
Method Summary
 ClassFilter getClassFilter()
           
 MethodMatcher getMethodMatcher()
           
 

Field Detail

TRUE

public static final Pointcut TRUE
Method Detail

getClassFilter

public ClassFilter getClassFilter()

getMethodMatcher

public MethodMatcher getMethodMatcher()


Copyright (C) 2003-2004 The Spring Framework Project.