类 ControlFlowPointcut

    • 构造器详细资料

      • ControlFlowPointcut

        public ControlFlowPointcut​(Class<?> clazz)
        Construct a new pointcut that matches all control flows below that class.
        参数:
        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.
        参数:
        clazz - the clazz
        methodName - the name of the method (may be null)