ComposablePointcut()
Create a default ComposablePointcut, with ClassFilter.TRUE and MethodMatcher.TRUE.
ComposablePointcut(pointcut: Pointcut)
Create a ComposablePointcut based on the given Pointcut.
pointcut - the original Pointcut
ComposablePointcut(classFilter: ClassFilter)
Create a ComposablePointcut for the given ClassFilter, with MethodMatcher.TRUE.
classFilter - the ClassFilter to use
ComposablePointcut(methodMatcher: MethodMatcher)
Create a ComposablePointcut for the given MethodMatcher, with ClassFilter.TRUE.
methodMatcher - the MethodMatcher to use
ComposablePointcut(classFilter: ClassFilter, methodMatcher: MethodMatcher)
Create a ComposablePointcut for the given ClassFilter and MethodMatcher.