public class org.springframework.aop.support.annotation.AnnotationMethodMatcher extends org.springframework.aop.support.StaticMethodMatcher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.aop.support.annotation.AnnotationMethodMatcher
  super_class: org.springframework.aop.support.StaticMethodMatcher
{
  private final java.lang.Class<? extends java.lang.annotation.Annotation> annotationType;
    descriptor: Ljava/lang/Class;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;

  private final boolean checkInherited;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.Class<? extends java.lang.annotation.Annotation>);
    descriptor: (Ljava/lang/Class;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
        start local 1 // java.lang.Class annotationType
         0: .line 49
            aload 0 /* this */
            aload 1 /* annotationType */
            iconst_0
            invokespecial org.springframework.aop.support.annotation.AnnotationMethodMatcher.<init>:(Ljava/lang/Class;Z)V
         1: .line 50
            return
        end local 1 // java.lang.Class annotationType
        end local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/springframework/aop/support/annotation/AnnotationMethodMatcher;
            0    2     1  annotationType  Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;
    Signature: (Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;)V
    MethodParameters:
                Name  Flags
      annotationType  

  public void <init>(java.lang.Class<? extends java.lang.annotation.Annotation>, );
    descriptor: (Ljava/lang/Class;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
        start local 1 // java.lang.Class annotationType
        start local 2 // boolean checkInherited
         0: .line 61
            aload 0 /* this */
            invokespecial org.springframework.aop.support.StaticMethodMatcher.<init>:()V
         1: .line 62
            aload 1 /* annotationType */
            ldc "Annotation type must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 63
            aload 0 /* this */
            aload 1 /* annotationType */
            putfield org.springframework.aop.support.annotation.AnnotationMethodMatcher.annotationType:Ljava/lang/Class;
         3: .line 64
            aload 0 /* this */
            iload 2 /* checkInherited */
            putfield org.springframework.aop.support.annotation.AnnotationMethodMatcher.checkInherited:Z
         4: .line 65
            return
        end local 2 // boolean checkInherited
        end local 1 // java.lang.Class annotationType
        end local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lorg/springframework/aop/support/annotation/AnnotationMethodMatcher;
            0    5     1  annotationType  Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;
            0    5     2  checkInherited  Z
    Signature: (Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;Z)V
    MethodParameters:
                Name  Flags
      annotationType  
      checkInherited  

  public boolean matches(java.lang.reflect.Method, java.lang.Class<?>);
    descriptor: (Ljava/lang/reflect/Method;Ljava/lang/Class;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
        start local 1 // java.lang.reflect.Method method
        start local 2 // java.lang.Class targetClass
         0: .line 71
            aload 0 /* this */
            aload 1 /* method */
            invokevirtual org.springframework.aop.support.annotation.AnnotationMethodMatcher.matchesMethod:(Ljava/lang/reflect/Method;)Z
            ifeq 2
         1: .line 72
            iconst_1
            ireturn
         2: .line 75
      StackMap locals:
      StackMap stack:
            aload 2 /* targetClass */
            invokestatic java.lang.reflect.Proxy.isProxyClass:(Ljava/lang/Class;)Z
            ifeq 4
         3: .line 76
            iconst_0
            ireturn
         4: .line 79
      StackMap locals:
      StackMap stack:
            aload 1 /* method */
            aload 2 /* targetClass */
            invokestatic org.springframework.aop.support.AopUtils.getMostSpecificMethod:(Ljava/lang/reflect/Method;Ljava/lang/Class;)Ljava/lang/reflect/Method;
            astore 3 /* specificMethod */
        start local 3 // java.lang.reflect.Method specificMethod
         5: .line 80
            aload 3 /* specificMethod */
            aload 1 /* method */
            if_acmpeq 6
            aload 0 /* this */
            aload 3 /* specificMethod */
            invokevirtual org.springframework.aop.support.annotation.AnnotationMethodMatcher.matchesMethod:(Ljava/lang/reflect/Method;)Z
            ifeq 6
            iconst_1
            ireturn
      StackMap locals: java.lang.reflect.Method
      StackMap stack:
         6: iconst_0
            ireturn
        end local 3 // java.lang.reflect.Method specificMethod
        end local 2 // java.lang.Class targetClass
        end local 1 // java.lang.reflect.Method method
        end local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lorg/springframework/aop/support/annotation/AnnotationMethodMatcher;
            0    7     1          method  Ljava/lang/reflect/Method;
            0    7     2     targetClass  Ljava/lang/Class<*>;
            5    7     3  specificMethod  Ljava/lang/reflect/Method;
    Signature: (Ljava/lang/reflect/Method;Ljava/lang/Class<*>;)Z
    MethodParameters:
             Name  Flags
      method       
      targetClass  

  private boolean matchesMethod(java.lang.reflect.Method);
    descriptor: (Ljava/lang/reflect/Method;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
        start local 1 // java.lang.reflect.Method method
         0: .line 84
            aload 0 /* this */
            getfield org.springframework.aop.support.annotation.AnnotationMethodMatcher.checkInherited:Z
            ifeq 1
            aload 1 /* method */
            aload 0 /* this */
            getfield org.springframework.aop.support.annotation.AnnotationMethodMatcher.annotationType:Ljava/lang/Class;
            invokestatic org.springframework.core.annotation.AnnotatedElementUtils.hasAnnotation:(Ljava/lang/reflect/AnnotatedElement;Ljava/lang/Class;)Z
            goto 2
         1: .line 85
      StackMap locals:
      StackMap stack:
            aload 1 /* method */
            aload 0 /* this */
            getfield org.springframework.aop.support.annotation.AnnotationMethodMatcher.annotationType:Ljava/lang/Class;
            invokevirtual java.lang.reflect.Method.isAnnotationPresent:(Ljava/lang/Class;)Z
         2: .line 84
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 1 // java.lang.reflect.Method method
        end local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/springframework/aop/support/annotation/AnnotationMethodMatcher;
            0    3     1  method  Ljava/lang/reflect/Method;
    MethodParameters:
        Name  Flags
      method  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
        start local 1 // java.lang.Object other
         0: .line 90
            aload 0 /* this */
            aload 1 /* other */
            if_acmpne 2
         1: .line 91
            iconst_1
            ireturn
         2: .line 93
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            instanceof org.springframework.aop.support.annotation.AnnotationMethodMatcher
            ifne 4
         3: .line 94
            iconst_0
            ireturn
         4: .line 96
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            checkcast org.springframework.aop.support.annotation.AnnotationMethodMatcher
            astore 2 /* otherMm */
        start local 2 // org.springframework.aop.support.annotation.AnnotationMethodMatcher otherMm
         5: .line 97
            aload 0 /* this */
            getfield org.springframework.aop.support.annotation.AnnotationMethodMatcher.annotationType:Ljava/lang/Class;
            aload 2 /* otherMm */
            getfield org.springframework.aop.support.annotation.AnnotationMethodMatcher.annotationType:Ljava/lang/Class;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // org.springframework.aop.support.annotation.AnnotationMethodMatcher otherMm
        end local 1 // java.lang.Object other
        end local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/springframework/aop/support/annotation/AnnotationMethodMatcher;
            0    6     1    other  Ljava/lang/Object;
            5    6     2  otherMm  Lorg/springframework/aop/support/annotation/AnnotationMethodMatcher;
    MethodParameters:
       Name  Flags
      other  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
         0: .line 102
            aload 0 /* this */
            getfield org.springframework.aop.support.annotation.AnnotationMethodMatcher.annotationType:Ljava/lang/Class;
            invokevirtual java.lang.Object.hashCode:()I
            ireturn
        end local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/aop/support/annotation/AnnotationMethodMatcher;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
         0: .line 107
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.springframework.aop.support.annotation.AnnotationMethodMatcher.annotationType:Ljava/lang/Class;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.aop.support.annotation.AnnotationMethodMatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/aop/support/annotation/AnnotationMethodMatcher;
}
SourceFile: "AnnotationMethodMatcher.java"