Class ControlFlowPointcut

    • Constructor Detail

      • ControlFlowPointcut

        public ControlFlowPointcut​(Class<?> clazz)
        Construct a new pointcut that matches all control flows below that class.
        Parameters:
        clazz - the clazz
      • ControlFlowPointcut

        public ControlFlowPointcut​(Class<?> clazz,
                                   @Nullable
                                   String methodName)
        Construct a new pointcut that matches all calls below the given method in the given class. If no method name is given, matches all control flows below the given class.
        Parameters:
        clazz - the clazz
        methodName - the name of the method (may be null)