public class org.apache.bcel.classfile.ParameterAnnotationEntry 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.ParameterAnnotationEntry
  super_class: java.lang.Object
{
  private final org.apache.bcel.classfile.AnnotationEntry[] annotation_table;
    descriptor: [Lorg/apache/bcel/classfile/AnnotationEntry;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.io.DataInput, org.apache.bcel.classfile.ConstantPool);
    descriptor: (Ljava/io/DataInput;Lorg/apache/bcel/classfile/ConstantPool;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.apache.bcel.classfile.ParameterAnnotationEntry this
        start local 1 // java.io.DataInput input
        start local 2 // org.apache.bcel.classfile.ConstantPool constant_pool
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 1 /* input */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            istore 3 /* annotation_table_length */
        start local 3 // int annotation_table_length
         2: .line 45
            aload 0 /* this */
            iload 3 /* annotation_table_length */
            anewarray org.apache.bcel.classfile.AnnotationEntry
            putfield org.apache.bcel.classfile.ParameterAnnotationEntry.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
         3: .line 46
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 7
         5: .line 48
      StackMap locals: org.apache.bcel.classfile.ParameterAnnotationEntry java.io.DataInput org.apache.bcel.classfile.ConstantPool int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.bcel.classfile.ParameterAnnotationEntry.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
            iload 4 /* i */
            aload 1 /* input */
            aload 2 /* constant_pool */
            iconst_0
            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 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 3 /* annotation_table_length */
            if_icmplt 5
        end local 4 // int i
         8: .line 50
            return
        end local 3 // int annotation_table_length
        end local 2 // org.apache.bcel.classfile.ConstantPool constant_pool
        end local 1 // java.io.DataInput input
        end local 0 // org.apache.bcel.classfile.ParameterAnnotationEntry this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    9     0                     this  Lorg/apache/bcel/classfile/ParameterAnnotationEntry;
            0    9     1                    input  Ljava/io/DataInput;
            0    9     2            constant_pool  Lorg/apache/bcel/classfile/ConstantPool;
            2    9     3  annotation_table_length  I
            4    8     4                        i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      input          final
      constant_pool  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.ParameterAnnotationEntry this
        start local 1 // org.apache.bcel.classfile.Visitor v
         0: .line 62
            aload 1 /* v */
            aload 0 /* this */
            invokeinterface org.apache.bcel.classfile.Visitor.visitParameterAnnotationEntry:(Lorg/apache/bcel/classfile/ParameterAnnotationEntry;)V
         1: .line 63
            return
        end local 1 // org.apache.bcel.classfile.Visitor v
        end local 0 // org.apache.bcel.classfile.ParameterAnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/bcel/classfile/ParameterAnnotationEntry;
            0    2     1     v  Lorg/apache/bcel/classfile/Visitor;
    MethodParameters:
      Name  Flags
      v     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.ParameterAnnotationEntry this
         0: .line 69
            aload 0 /* this */
            getfield org.apache.bcel.classfile.ParameterAnnotationEntry.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
            areturn
        end local 0 // org.apache.bcel.classfile.ParameterAnnotationEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/ParameterAnnotationEntry;

  public void dump(java.io.DataOutputStream);
    descriptor: (Ljava/io/DataOutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.apache.bcel.classfile.ParameterAnnotationEntry this
        start local 1 // java.io.DataOutputStream dos
         0: .line 73
            aload 1 /* dos */
            aload 0 /* this */
            getfield org.apache.bcel.classfile.ParameterAnnotationEntry.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
            arraylength
            invokevirtual java.io.DataOutputStream.writeShort:(I)V
         1: .line 74
            aload 0 /* this */
            getfield org.apache.bcel.classfile.ParameterAnnotationEntry.annotation_table:[Lorg/apache/bcel/classfile/AnnotationEntry;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: org.apache.bcel.classfile.ParameterAnnotationEntry java.io.DataOutputStream top int int org.apache.bcel.classfile.AnnotationEntry[]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* entry */
        start local 2 // org.apache.bcel.classfile.AnnotationEntry entry
         3: .line 75
            aload 2 /* entry */
            aload 1 /* dos */
            invokevirtual org.apache.bcel.classfile.AnnotationEntry.dump:(Ljava/io/DataOutputStream;)V
        end local 2 // org.apache.bcel.classfile.AnnotationEntry entry
         4: .line 74
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 2
         6: .line 77
            return
        end local 1 // java.io.DataOutputStream dos
        end local 0 // org.apache.bcel.classfile.ParameterAnnotationEntry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/bcel/classfile/ParameterAnnotationEntry;
            0    7     1    dos  Ljava/io/DataOutputStream;
            3    4     2  entry  Lorg/apache/bcel/classfile/AnnotationEntry;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      dos   final

  public static org.apache.bcel.classfile.ParameterAnnotationEntry[] createParameterAnnotationEntries(org.apache.bcel.classfile.Attribute[]);
    descriptor: ([Lorg/apache/bcel/classfile/Attribute;)[Lorg/apache/bcel/classfile/ParameterAnnotationEntry;
    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 81
            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 82
            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 83
            aload 2 /* attribute */
            instanceof org.apache.bcel.classfile.ParameterAnnotations
            ifeq 6
         4: .line 84
            aload 2 /* attribute */
            checkcast org.apache.bcel.classfile.ParameterAnnotations
            astore 6 /* runtimeAnnotations */
        start local 6 // org.apache.bcel.classfile.ParameterAnnotations runtimeAnnotations
         5: .line 85
            aload 1 /* accumulatedAnnotations */
            aload 6 /* runtimeAnnotations */
            invokevirtual org.apache.bcel.classfile.ParameterAnnotations.getParameterAnnotationEntries:()[Lorg/apache/bcel/classfile/ParameterAnnotationEntry;
            invokestatic java.util.Collections.addAll:(Ljava/util/Collection;[Ljava/lang/Object;)Z
            pop
        end local 6 // org.apache.bcel.classfile.ParameterAnnotations runtimeAnnotations
        end local 2 // org.apache.bcel.classfile.Attribute attribute
         6: .line 82
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         7: iload 3
            iload 4
            if_icmplt 2
         8: .line 88
            aload 1 /* accumulatedAnnotations */
            aload 1 /* accumulatedAnnotations */
            invokeinterface java.util.List.size:()I
            anewarray org.apache.bcel.classfile.ParameterAnnotationEntry
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.apache.bcel.classfile.ParameterAnnotationEntry[]
            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/ParameterAnnotationEntry;>;
            3    6     2               attribute  Lorg/apache/bcel/classfile/Attribute;
            5    6     6      runtimeAnnotations  Lorg/apache/bcel/classfile/ParameterAnnotations;
    MethodParameters:
       Name  Flags
      attrs  final
}
SourceFile: "ParameterAnnotationEntry.java"