public class org.apache.bcel.classfile.AnnotationEntry implements org.apache.bcel.classfile.Node
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.bcel.classfile.AnnotationEntry
  super_class: java.lang.Object
{
  private final int type_index;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.bcel.classfile.ConstantPool constant_pool;
    descriptor: Lorg/apache/bcel/classfile/ConstantPool;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private java.util.List<org.apache.bcel.classfile.ElementValuePair> element_value_pairs;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/apache/bcel/classfile/ElementValuePair;>;

  public static org.apache.bcel.classfile.AnnotationEntry read(java.io.DataInput, org.apache.bcel.classfile.ConstantPool, boolean);
    descriptor: (Ljava/io/DataInput;Lorg/apache/bcel/classfile/ConstantPool;Z)Lorg/apache/bcel/classfile/AnnotationEntry;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // java.io.DataInput input
        start local 1 // org.apache.bcel.classfile.ConstantPool constant_pool
        start local 2 // boolean isRuntimeVisible
         0: .line 53
            new org.apache.bcel.classfile.AnnotationEntry
            dup
            aload 0 /* input */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            aload 1 /* constant_pool */
            iload 2 /* isRuntimeVisible */
            invokespecial org.apache.bcel.classfile.AnnotationEntry.<init>:(ILorg/apache/bcel/classfile/ConstantPool;Z)V
            astore 3 /* annotationEntry */
        start local 3 // org.apache.bcel.classfile.AnnotationEntry annotationEntry
         1: .line 54
            aload 0 /* input */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            istore 4 /* num_element_value_pairs */
        start local 4 // int num_element_value_pairs
         2: .line 55
            aload 3 /* annotationEntry */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.bcel.classfile.AnnotationEntry.element_value_pairs:Ljava/util/List;
         3: .line 56
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         4: goto 11
         5: .line 57
      StackMap locals: org.apache.bcel.classfile.AnnotationEntry int int
      StackMap stack:
            aload 3 /* annotationEntry */
            getfield org.apache.bcel.classfile.AnnotationEntry.element_value_pairs:Ljava/util/List;
         6: .line 58
            new org.apache.bcel.classfile.ElementValuePair
            dup
            aload 0 /* input */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            aload 0 /* input */
            aload 1 /* constant_pool */
            invokestatic org.apache.bcel.classfile.ElementValue.readElementValue:(Ljava/io/DataInput;Lorg/apache/bcel/classfile/ConstantPool;)Lorg/apache/bcel/classfile/ElementValue;
         7: .line 59
            aload 1 /* constant_pool */
         8: .line 58
            invokespecial org.apache.bcel.classfile.ElementValuePair.<init>:(ILorg/apache/bcel/classfile/ElementValue;Lorg/apache/bcel/classfile/ConstantPool;)V
         9: .line 57
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        10: .line 56
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 5 /* i */
            iload 4 /* num_element_value_pairs */
            if_icmplt 5
        end local 5 // int i
        12: .line 61
            aload 3 /* annotationEntry */
            areturn
        end local 4 // int num_element_value_pairs
        end local 3 // org.apache.bcel.classfile.AnnotationEntry annotationEntry
        end local 2 // boolean isRuntimeVisible
        end local 1 // org.apache.bcel.classfile.ConstantPool constant_pool
        end local 0 // java.io.DataInput input
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   13     0                    input  Ljava/io/DataInput;
            0   13     1            constant_pool  Lorg/apache/bcel/classfile/ConstantPool;
            0   13     2         isRuntimeVisible  Z
            1   13     3          annotationEntry  Lorg/apache/bcel/classfile/AnnotationEntry;
            2   13     4  num_element_value_pairs  I
            4   12     5                        i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                  Name  Flags
      input             final
      constant_pool     final
      isRuntimeVisible  final

  public void <init>(int, org.apache.bcel.classfile.ConstantPool, boolean);
    descriptor: (ILorg/apache/bcel/classfile/ConstantPool;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
        start local 1 // int type_index
        start local 2 // org.apache.bcel.classfile.ConstantPool constant_pool
        start local 3 // boolean isRuntimeVisible
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 65
            aload 0 /* this */
            iload 1 /* type_index */
            putfield org.apache.bcel.classfile.AnnotationEntry.type_index:I
         2: .line 66
            aload 0 /* this */
            aload 2 /* constant_pool */
            putfield org.apache.bcel.classfile.AnnotationEntry.constant_pool:Lorg/apache/bcel/classfile/ConstantPool;
         3: .line 67
            aload 0 /* this */
            iload 3 /* isRuntimeVisible */
            putfield org.apache.bcel.classfile.AnnotationEntry.isRuntimeVisible:Z
         4: .line 68
            return
        end local 3 // boolean isRuntimeVisible
        end local 2 // org.apache.bcel.classfile.ConstantPool constant_pool
        end local 1 // int type_index
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lorg/apache/bcel/classfile/AnnotationEntry;
            0    5     1        type_index  I
            0    5     2     constant_pool  Lorg/apache/bcel/classfile/ConstantPool;
            0    5     3  isRuntimeVisible  Z
    MethodParameters:
                  Name  Flags
      type_index        final
      constant_pool     final
      isRuntimeVisible  final

  public int getTypeIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
         0: .line 71
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.type_index:I
            ireturn
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/AnnotationEntry;

  public org.apache.bcel.classfile.ConstantPool getConstantPool();
    descriptor: ()Lorg/apache/bcel/classfile/ConstantPool;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
         0: .line 75
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.constant_pool:Lorg/apache/bcel/classfile/ConstantPool;
            areturn
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/AnnotationEntry;

  public boolean isRuntimeVisible();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
         0: .line 79
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.isRuntimeVisible:Z
            ireturn
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/AnnotationEntry;

  public void accept(org.apache.bcel.classfile.Visitor);
    descriptor: (Lorg/apache/bcel/classfile/Visitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
        start local 1 // org.apache.bcel.classfile.Visitor v
         0: .line 90
            aload 1 /* v */
            aload 0 /* this */
            invokeinterface org.apache.bcel.classfile.Visitor.visitAnnotationEntry:(Lorg/apache/bcel/classfile/AnnotationEntry;)V
         1: .line 91
            return
        end local 1 // org.apache.bcel.classfile.Visitor v
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/bcel/classfile/AnnotationEntry;
            0    2     1     v  Lorg/apache/bcel/classfile/Visitor;
    MethodParameters:
      Name  Flags
      v     final

  public java.lang.String getAnnotationType();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
         0: .line 97
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.constant_pool:Lorg/apache/bcel/classfile/ConstantPool;
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.type_index:I
            iconst_1
            invokevirtual org.apache.bcel.classfile.ConstantPool.getConstant:(IB)Lorg/apache/bcel/classfile/Constant;
            checkcast org.apache.bcel.classfile.ConstantUtf8
            astore 1 /* c */
        start local 1 // org.apache.bcel.classfile.ConstantUtf8 c
         1: .line 98
            aload 1 /* c */
            invokevirtual org.apache.bcel.classfile.ConstantUtf8.getBytes:()Ljava/lang/String;
            areturn
        end local 1 // org.apache.bcel.classfile.ConstantUtf8 c
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/bcel/classfile/AnnotationEntry;
            1    2     1     c  Lorg/apache/bcel/classfile/ConstantUtf8;

  public int getAnnotationTypeIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
         0: .line 105
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.type_index:I
            ireturn
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/AnnotationEntry;

  public final int getNumElementValuePairs();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
         0: .line 112
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.element_value_pairs:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/AnnotationEntry;

  public org.apache.bcel.classfile.ElementValuePair[] getElementValuePairs();
    descriptor: ()[Lorg/apache/bcel/classfile/ElementValuePair;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
         0: .line 120
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.element_value_pairs:Ljava/util/List;
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.element_value_pairs:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            anewarray org.apache.bcel.classfile.ElementValuePair
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.apache.bcel.classfile.ElementValuePair[]
            areturn
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/AnnotationEntry;

  public void dump(java.io.DataOutputStream);
    descriptor: (Ljava/io/DataOutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
        start local 1 // java.io.DataOutputStream dos
         0: .line 124
            aload 1 /* dos */
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.type_index:I
            invokevirtual java.io.DataOutputStream.writeShort:(I)V
         1: .line 125
            aload 1 /* dos */
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.element_value_pairs:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokevirtual java.io.DataOutputStream.writeShort:(I)V
         2: .line 127
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.element_value_pairs:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.apache.bcel.classfile.AnnotationEntry java.io.DataOutputStream top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.bcel.classfile.ElementValuePair
            astore 2 /* envp */
        start local 2 // org.apache.bcel.classfile.ElementValuePair envp
         4: .line 128
            aload 2 /* envp */
            aload 1 /* dos */
            invokevirtual org.apache.bcel.classfile.ElementValuePair.dump:(Ljava/io/DataOutputStream;)V
        end local 2 // org.apache.bcel.classfile.ElementValuePair envp
         5: .line 127
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 130
            return
        end local 1 // java.io.DataOutputStream dos
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/bcel/classfile/AnnotationEntry;
            0    7     1   dos  Ljava/io/DataOutputStream;
            4    5     2  envp  Lorg/apache/bcel/classfile/ElementValuePair;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      dos   final

  public void addElementNameValuePair(org.apache.bcel.classfile.ElementValuePair);
    descriptor: (Lorg/apache/bcel/classfile/ElementValuePair;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
        start local 1 // org.apache.bcel.classfile.ElementValuePair elementNameValuePair
         0: .line 133
            aload 0 /* this */
            getfield org.apache.bcel.classfile.AnnotationEntry.element_value_pairs:Ljava/util/List;
            aload 1 /* elementNameValuePair */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 134
            return
        end local 1 // org.apache.bcel.classfile.ElementValuePair elementNameValuePair
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lorg/apache/bcel/classfile/AnnotationEntry;
            0    2     1  elementNameValuePair  Lorg/apache/bcel/classfile/ElementValuePair;
    MethodParameters:
                      Name  Flags
      elementNameValuePair  final

  public java.lang.String toShortString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=1
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
         0: .line 137
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* result */
        start local 1 // java.lang.StringBuilder result
         1: .line 138
            aload 1 /* result */
            ldc "@"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 139
            aload 1 /* result */
            aload 0 /* this */
            invokevirtual org.apache.bcel.classfile.AnnotationEntry.getAnnotationType:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 140
            aload 0 /* this */
            invokevirtual org.apache.bcel.classfile.AnnotationEntry.getElementValuePairs:()[Lorg/apache/bcel/classfile/ElementValuePair;
            astore 2 /* evPairs */
        start local 2 // org.apache.bcel.classfile.ElementValuePair[] evPairs
         4: .line 141
            aload 2 /* evPairs */
            arraylength
            ifle 12
         5: .line 142
            aload 1 /* result */
            ldc "("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 143
            aload 2 /* evPairs */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 10
      StackMap locals: org.apache.bcel.classfile.AnnotationEntry java.lang.StringBuilder org.apache.bcel.classfile.ElementValuePair[] top int int org.apache.bcel.classfile.ElementValuePair[]
      StackMap stack:
         7: aload 6
            iload 4
            aaload
            astore 3 /* element */
        start local 3 // org.apache.bcel.classfile.ElementValuePair element
         8: .line 144
            aload 1 /* result */
            aload 3 /* element */
            invokevirtual org.apache.bcel.classfile.ElementValuePair.toShortString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 3 // org.apache.bcel.classfile.ElementValuePair element
         9: .line 143
            iinc 4 1
      StackMap locals:
      StackMap stack:
        10: iload 4
            iload 5
            if_icmplt 7
        11: .line 146
            aload 1 /* result */
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        12: .line 148
      StackMap locals: org.apache.bcel.classfile.AnnotationEntry java.lang.StringBuilder org.apache.bcel.classfile.ElementValuePair[]
      StackMap stack:
            aload 1 /* result */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // org.apache.bcel.classfile.ElementValuePair[] evPairs
        end local 1 // java.lang.StringBuilder result
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lorg/apache/bcel/classfile/AnnotationEntry;
            1   13     1   result  Ljava/lang/StringBuilder;
            4   13     2  evPairs  [Lorg/apache/bcel/classfile/ElementValuePair;
            8    9     3  element  Lorg/apache/bcel/classfile/ElementValuePair;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.AnnotationEntry this
         0: .line 153
            aload 0 /* this */
            invokevirtual org.apache.bcel.classfile.AnnotationEntry.toShortString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.bcel.classfile.AnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/AnnotationEntry;

  public static org.apache.bcel.classfile.AnnotationEntry[] createAnnotationEntries(org.apache.bcel.classfile.Attribute[]);
    descriptor: ([Lorg/apache/bcel/classfile/Attribute;)[Lorg/apache/bcel/classfile/AnnotationEntry;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=7, args_size=1
        start local 0 // org.apache.bcel.classfile.Attribute[] attrs
         0: .line 158
            new java.util.ArrayList
            dup
            aload 0 /* attrs */
            arraylength
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 1 /* accumulatedAnnotations */
        start local 1 // java.util.List accumulatedAnnotations
         1: .line 159
            aload 0 /* attrs */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 7
      StackMap locals: org.apache.bcel.classfile.Attribute[] java.util.List top int int org.apache.bcel.classfile.Attribute[]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* attribute */
        start local 2 // org.apache.bcel.classfile.Attribute attribute
         3: .line 160
            aload 2 /* attribute */
            instanceof org.apache.bcel.classfile.Annotations
            ifeq 6
         4: .line 161
            aload 2 /* attribute */
            checkcast org.apache.bcel.classfile.Annotations
            astore 6 /* runtimeAnnotations */
        start local 6 // org.apache.bcel.classfile.Annotations runtimeAnnotations
         5: .line 162
            aload 1 /* accumulatedAnnotations */
            aload 6 /* runtimeAnnotations */
            invokevirtual org.apache.bcel.classfile.Annotations.getAnnotationEntries:()[Lorg/apache/bcel/classfile/AnnotationEntry;
            invokestatic java.util.Collections.addAll:(Ljava/util/Collection;[Ljava/lang/Object;)Z
            pop
        end local 6 // org.apache.bcel.classfile.Annotations runtimeAnnotations
        end local 2 // org.apache.bcel.classfile.Attribute attribute
         6: .line 159
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         7: iload 3
            iload 4
            if_icmplt 2
         8: .line 165
            aload 1 /* accumulatedAnnotations */
            aload 1 /* accumulatedAnnotations */
            invokeinterface java.util.List.size:()I
            anewarray org.apache.bcel.classfile.AnnotationEntry
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.apache.bcel.classfile.AnnotationEntry[]
            areturn
        end local 1 // java.util.List accumulatedAnnotations
        end local 0 // org.apache.bcel.classfile.Attribute[] attrs
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    9     0                   attrs  [Lorg/apache/bcel/classfile/Attribute;
            1    9     1  accumulatedAnnotations  Ljava/util/List<Lorg/apache/bcel/classfile/AnnotationEntry;>;
            3    6     2               attribute  Lorg/apache/bcel/classfile/Attribute;
            5    6     6      runtimeAnnotations  Lorg/apache/bcel/classfile/Annotations;
    MethodParameters:
       Name  Flags
      attrs  final
}
SourceFile: "AnnotationEntry.java"