public abstract class org.apache.bcel.classfile.Annotations extends org.apache.bcel.classfile.Attribute
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.bcel.classfile.Annotations
  super_class: org.apache.bcel.classfile.Attribute
{
  private org.apache.bcel.classfile.AnnotationEntry[] annotation_table;
    descriptor: [Lorg/apache/bcel/classfile/AnnotationEntry;
    flags: (0x0002) ACC_PRIVATE

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

  void <init>(byte, int, int, java.io.DataInput, org.apache.bcel.classfile.ConstantPool, boolean);
    descriptor: (BIILjava/io/DataInput;Lorg/apache/bcel/classfile/ConstantPool;Z)V
    flags: (0x0000) 
    Code:
      stack=7, locals=9, args_size=7
        start local 0 // org.apache.bcel.classfile.Annotations this
        start local 1 // byte annotation_type
        start local 2 // int name_index
        start local 3 // int length
        start local 4 // java.io.DataInput input
        start local 5 // org.apache.bcel.classfile.ConstantPool constant_pool
        start local 6 // boolean isRuntimeVisible
         0: .line 43
            aload 0 /* this */
            iload 1 /* annotation_type */
            iload 2 /* name_index */
            iload 3 /* length */
            aconst_null
            aload 5 /* constant_pool */
            iload 6 /* isRuntimeVisible */
            invokespecial org.apache.bcel.classfile.Annotations.<init>:(BII[Lorg/apache/bcel/classfile/AnnotationEntry;Lorg/apache/bcel/classfile/ConstantPool;Z)V
         1: .line 44
            aload 4 /* input */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            istore 7 /* annotation_table_length */
        start local 7 // int annotation_table_length
         2: .line 45
            aload 0 /* this */
            iload 7 /* annotation_table_length */
            anewarray org.apache.bcel.classfile.AnnotationEntry
            putfield org.apache.bcel.classfile.Annotations.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
         3: .line 46
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         4: goto 7
         5: .line 47
      StackMap locals: org.apache.bcel.classfile.Annotations int int int java.io.DataInput org.apache.bcel.classfile.ConstantPool int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Annotations.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
            iload 8 /* i */
            aload 4 /* input */
            aload 5 /* constant_pool */
            iload 6 /* isRuntimeVisible */
            invokestatic org.apache.bcel.classfile.AnnotationEntry.read:(Ljava/io/DataInput;Lorg/apache/bcel/classfile/ConstantPool;Z)Lorg/apache/bcel/classfile/AnnotationEntry;
            aastore
         6: .line 46
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 8 /* i */
            iload 7 /* annotation_table_length */
            if_icmplt 5
        end local 8 // int i
         8: .line 49
            return
        end local 7 // int annotation_table_length
        end local 6 // boolean isRuntimeVisible
        end local 5 // org.apache.bcel.classfile.ConstantPool constant_pool
        end local 4 // java.io.DataInput input
        end local 3 // int length
        end local 2 // int name_index
        end local 1 // byte annotation_type
        end local 0 // org.apache.bcel.classfile.Annotations this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    9     0                     this  Lorg/apache/bcel/classfile/Annotations;
            0    9     1          annotation_type  B
            0    9     2               name_index  I
            0    9     3                   length  I
            0    9     4                    input  Ljava/io/DataInput;
            0    9     5            constant_pool  Lorg/apache/bcel/classfile/ConstantPool;
            0    9     6         isRuntimeVisible  Z
            2    9     7  annotation_table_length  I
            4    8     8                        i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                  Name  Flags
      annotation_type   final
      name_index        final
      length            final
      input             final
      constant_pool     final
      isRuntimeVisible  final

  public void <init>(byte, int, int, org.apache.bcel.classfile.AnnotationEntry[], org.apache.bcel.classfile.ConstantPool, boolean);
    descriptor: (BII[Lorg/apache/bcel/classfile/AnnotationEntry;Lorg/apache/bcel/classfile/ConstantPool;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=7
        start local 0 // org.apache.bcel.classfile.Annotations this
        start local 1 // byte annotation_type
        start local 2 // int name_index
        start local 3 // int length
        start local 4 // org.apache.bcel.classfile.AnnotationEntry[] annotation_table
        start local 5 // org.apache.bcel.classfile.ConstantPool constant_pool
        start local 6 // boolean isRuntimeVisible
         0: .line 60
            aload 0 /* this */
            iload 1 /* annotation_type */
            iload 2 /* name_index */
            iload 3 /* length */
            aload 5 /* constant_pool */
            invokespecial org.apache.bcel.classfile.Attribute.<init>:(BIILorg/apache/bcel/classfile/ConstantPool;)V
         1: .line 61
            aload 0 /* this */
            aload 4 /* annotation_table */
            putfield org.apache.bcel.classfile.Annotations.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
         2: .line 62
            aload 0 /* this */
            iload 6 /* isRuntimeVisible */
            putfield org.apache.bcel.classfile.Annotations.isRuntimeVisible:Z
         3: .line 63
            return
        end local 6 // boolean isRuntimeVisible
        end local 5 // org.apache.bcel.classfile.ConstantPool constant_pool
        end local 4 // org.apache.bcel.classfile.AnnotationEntry[] annotation_table
        end local 3 // int length
        end local 2 // int name_index
        end local 1 // byte annotation_type
        end local 0 // org.apache.bcel.classfile.Annotations this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lorg/apache/bcel/classfile/Annotations;
            0    4     1   annotation_type  B
            0    4     2        name_index  I
            0    4     3            length  I
            0    4     4  annotation_table  [Lorg/apache/bcel/classfile/AnnotationEntry;
            0    4     5     constant_pool  Lorg/apache/bcel/classfile/ConstantPool;
            0    4     6  isRuntimeVisible  Z
    MethodParameters:
                  Name  Flags
      annotation_type   final
      name_index        final
      length            final
      annotation_table  final
      constant_pool     final
      isRuntimeVisible  final

  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.Annotations this
        start local 1 // org.apache.bcel.classfile.Visitor v
         0: .line 73
            aload 1 /* v */
            aload 0 /* this */
            invokeinterface org.apache.bcel.classfile.Visitor.visitAnnotation:(Lorg/apache/bcel/classfile/Annotations;)V
         1: .line 74
            return
        end local 1 // org.apache.bcel.classfile.Visitor v
        end local 0 // org.apache.bcel.classfile.Annotations this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/bcel/classfile/Annotations;
            0    2     1     v  Lorg/apache/bcel/classfile/Visitor;
    MethodParameters:
      Name  Flags
      v     final

  public final void setAnnotationTable(org.apache.bcel.classfile.AnnotationEntry[]);
    descriptor: ([Lorg/apache/bcel/classfile/AnnotationEntry;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.bcel.classfile.Annotations this
        start local 1 // org.apache.bcel.classfile.AnnotationEntry[] annotation_table
         0: .line 80
            aload 0 /* this */
            aload 1 /* annotation_table */
            putfield org.apache.bcel.classfile.Annotations.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
         1: .line 81
            return
        end local 1 // org.apache.bcel.classfile.AnnotationEntry[] annotation_table
        end local 0 // org.apache.bcel.classfile.Annotations this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/apache/bcel/classfile/Annotations;
            0    2     1  annotation_table  [Lorg/apache/bcel/classfile/AnnotationEntry;
    MethodParameters:
                  Name  Flags
      annotation_table  final

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

  public final int getNumAnnotations();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.Annotations this
         0: .line 94
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Annotations.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
            ifnonnull 2
         1: .line 95
            iconst_0
            ireturn
         2: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Annotations.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
            arraylength
            ireturn
        end local 0 // org.apache.bcel.classfile.Annotations this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/bcel/classfile/Annotations;

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

  protected void writeAnnotations(java.io.DataOutputStream);
    descriptor: (Ljava/io/DataOutputStream;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.apache.bcel.classfile.Annotations this
        start local 1 // java.io.DataOutputStream dos
         0: .line 105
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Annotations.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
            ifnonnull 2
         1: .line 106
            return
         2: .line 108
      StackMap locals:
      StackMap stack:
            aload 1 /* dos */
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Annotations.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
            arraylength
            invokevirtual java.io.DataOutputStream.writeShort:(I)V
         3: .line 109
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Annotations.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 7
      StackMap locals: org.apache.bcel.classfile.Annotations java.io.DataOutputStream top int int org.apache.bcel.classfile.AnnotationEntry[]
      StackMap stack:
         4: aload 5
            iload 3
            aaload
            astore 2 /* element */
        start local 2 // org.apache.bcel.classfile.AnnotationEntry element
         5: .line 110
            aload 2 /* element */
            aload 1 /* dos */
            invokevirtual org.apache.bcel.classfile.AnnotationEntry.dump:(Ljava/io/DataOutputStream;)V
        end local 2 // org.apache.bcel.classfile.AnnotationEntry element
         6: .line 109
            iinc 3 1
      StackMap locals:
      StackMap stack:
         7: iload 3
            iload 4
            if_icmplt 4
         8: .line 112
            return
        end local 1 // java.io.DataOutputStream dos
        end local 0 // org.apache.bcel.classfile.Annotations this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lorg/apache/bcel/classfile/Annotations;
            0    9     1      dos  Ljava/io/DataOutputStream;
            5    6     2  element  Lorg/apache/bcel/classfile/AnnotationEntry;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      dos   final
}
SourceFile: "Annotations.java"