当前页面:
在线文档首页 >
Spring Framework 1.2.9 API 文档英文版
UnionPointcut (Spring Framework) - Spring Framework 1.2.9 API 文档英文版
org.springframework.aop.support
Class UnionPointcut
java.lang.Object
org.springframework.aop.support.UnionPointcut
- All Implemented Interfaces:
- Serializable, Pointcut
class UnionPointcut
- extends Object
- implements Pointcut, Serializable
Pointcut unions are tricky, because we can't just
OR the MethodMatchers: we need to check that each MethodMatcher's
ClassFilter was happy as well.
- Author:
- Rod Johnson
Fields inherited from interface org.springframework.aop.Pointcut |
TRUE |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
UnionPointcut
public UnionPointcut(Pointcut a,
Pointcut b)
getClassFilter
public ClassFilter getClassFilter()
- Description copied from interface:
Pointcut
- Return the ClassFilter for this pointcut.
- Specified by:
getClassFilter
in interface Pointcut
- Returns:
- the ClassFilter (never
null
)
getMethodMatcher
public MethodMatcher getMethodMatcher()
- Description copied from interface:
Pointcut
- Return the MethodMatcher for this pointcut.
- Specified by:
getMethodMatcher
in interface Pointcut
- Returns:
- the MethodMatcher (never
null
)
Copyright (c) 2002-2007 The Spring Framework Project.