| java.lang.Object org.springframework.aop.support.ControlFlowPointcut
Constructor Summary | |
public | ControlFlowPointcut(Class clazz) Construct a new pointcut that matches all control flows below that class. | public | ControlFlowPointcut(Class clazz, String methodName) Construct a new pointcut that matches all calls below the
given method in the given class. |
ControlFlowPointcut | public ControlFlowPointcut(Class clazz)(Code) | | Construct a new pointcut that matches all control flows below that class.
Parameters: clazz - the clazz |
ControlFlowPointcut | public ControlFlowPointcut(Class clazz, String methodName)(Code) | | Construct a new pointcut that matches all calls below the
given method in the given class. If the method name is null,
matches all control flows below that class.
Parameters: clazz - the clazz Parameters: methodName - the name of the method |
getEvaluations | public int getEvaluations()(Code) | | It's useful to know how many times we've fired, for optimization.
|
hashCode | public int hashCode()(Code) | | |
isRuntime | public boolean isRuntime()(Code) | | |
matches | public boolean matches(Class clazz)(Code) | | Subclasses can override this for greater filtering (and performance).
|
matches | public boolean matches(Method method, Class targetClass)(Code) | | Subclasses can override this if it's possible to filter out
some candidate classes.
|
|
|