public class org.testng.internal.reflect.Parameter implements java.lang.reflect.AnnotatedElement
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.testng.internal.reflect.Parameter
  super_class: java.lang.Object
{
  private final int index;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Class<?> type;
    descriptor: Ljava/lang/Class;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Class<*>;

  private final java.lang.annotation.Annotation[] declaredAnnotations;
    descriptor: [Ljava/lang/annotation/Annotation;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Map<java.lang.Class<? extends java.lang.annotation.Annotation>, java.lang.annotation.Annotation> declaredAnnotationsMap;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;Ljava/lang/annotation/Annotation;>;

  public void <init>(int, java.lang.Class<?>, java.lang.annotation.Annotation[]);
    descriptor: (ILjava/lang/Class;[Ljava/lang/annotation/Annotation;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.testng.internal.reflect.Parameter this
        start local 1 // int index
        start local 2 // java.lang.Class type
        start local 3 // java.lang.annotation.Annotation[] declaredAnnotations
         0: .line 23
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 24
            aload 0 /* this */
            iload 1 /* index */
            putfield org.testng.internal.reflect.Parameter.index:I
         2: .line 25
            aload 0 /* this */
            aload 2 /* type */
            putfield org.testng.internal.reflect.Parameter.type:Ljava/lang/Class;
         3: .line 26
            aload 0 /* this */
            aload 3 /* declaredAnnotations */
            putfield org.testng.internal.reflect.Parameter.declaredAnnotations:[Ljava/lang/annotation/Annotation;
         4: .line 27
            aload 0 /* this */
            aload 3 /* declaredAnnotations */
            invokestatic org.testng.internal.reflect.Parameter.declaredAnnotations:([Ljava/lang/annotation/Annotation;)Ljava/util/Map;
            putfield org.testng.internal.reflect.Parameter.declaredAnnotationsMap:Ljava/util/Map;
         5: .line 28
            return
        end local 3 // java.lang.annotation.Annotation[] declaredAnnotations
        end local 2 // java.lang.Class type
        end local 1 // int index
        end local 0 // org.testng.internal.reflect.Parameter this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    6     0                 this  Lorg/testng/internal/reflect/Parameter;
            0    6     1                index  I
            0    6     2                 type  Ljava/lang/Class<*>;
            0    6     3  declaredAnnotations  [Ljava/lang/annotation/Annotation;
    Signature: (ILjava/lang/Class<*>;[Ljava/lang/annotation/Annotation;)V
    MethodParameters:
                     Name  Flags
      index                final
      type                 final
      declaredAnnotations  final

  private static java.util.Map<java.lang.Class<? extends java.lang.annotation.Annotation>, java.lang.annotation.Annotation> declaredAnnotations(java.lang.annotation.Annotation[]);
    descriptor: ([Ljava/lang/annotation/Annotation;)Ljava/util/Map;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // java.lang.annotation.Annotation[] ann
         0: .line 32
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 1 /* map */
        start local 1 // java.util.Map map
         1: .line 33
            aload 0 /* ann */
            ifnull 7
         2: .line 34
            aload 0 /* ann */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 6
      StackMap locals: java.lang.annotation.Annotation[] java.util.Map top int int java.lang.annotation.Annotation[]
      StackMap stack:
         3: aload 5
            iload 3
            aaload
            astore 2 /* anAnn */
        start local 2 // java.lang.annotation.Annotation anAnn
         4: .line 35
            aload 1 /* map */
            aload 2 /* anAnn */
            invokeinterface java.lang.annotation.Annotation.annotationType:()Ljava/lang/Class;
            aload 2 /* anAnn */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 2 // java.lang.annotation.Annotation anAnn
         5: .line 34
            iinc 3 1
      StackMap locals:
      StackMap stack:
         6: iload 3
            iload 4
            if_icmplt 3
         7: .line 38
      StackMap locals: java.lang.annotation.Annotation[] java.util.Map
      StackMap stack:
            aload 1 /* map */
            areturn
        end local 1 // java.util.Map map
        end local 0 // java.lang.annotation.Annotation[] ann
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0    ann  [Ljava/lang/annotation/Annotation;
            1    8     1    map  Ljava/util/Map<Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;Ljava/lang/annotation/Annotation;>;
            4    5     2  anAnn  Ljava/lang/annotation/Annotation;
    Signature: ([Ljava/lang/annotation/Annotation;)Ljava/util/Map<Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;Ljava/lang/annotation/Annotation;>;
    MethodParameters:
      Name  Flags
      ann   final

  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.testng.internal.reflect.Parameter this
         0: .line 43
            new java.lang.StringBuilder
            dup
            ldc "Parameter{index="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         1: .line 45
            aload 0 /* this */
            getfield org.testng.internal.reflect.Parameter.index:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         2: .line 46
            ldc ", type="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         3: .line 47
            aload 0 /* this */
            getfield org.testng.internal.reflect.Parameter.type:Ljava/lang/Class;
            ifnull 4
            aload 0 /* this */
            getfield org.testng.internal.reflect.Parameter.type:Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            goto 5
      StackMap locals:
      StackMap stack: java.lang.StringBuilder
         4: aconst_null
      StackMap locals: org.testng.internal.reflect.Parameter
      StackMap stack: java.lang.StringBuilder java.lang.String
         5: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 48
            ldc ", declaredAnnotations="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         7: .line 49
            aload 0 /* this */
            getfield org.testng.internal.reflect.Parameter.declaredAnnotations:[Ljava/lang/annotation/Annotation;
            invokestatic java.util.Arrays.toString:([Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         8: .line 50
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         9: .line 43
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.testng.internal.reflect.Parameter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/testng/internal/reflect/Parameter;

  public java.lang.Class<?> getType();
    descriptor: ()Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.testng.internal.reflect.Parameter this
         0: .line 61
            aload 0 /* this */
            getfield org.testng.internal.reflect.Parameter.type:Ljava/lang/Class;
            areturn
        end local 0 // org.testng.internal.reflect.Parameter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/testng/internal/reflect/Parameter;
    Signature: ()Ljava/lang/Class<*>;

  public boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
    descriptor: (Ljava/lang/Class;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.testng.internal.reflect.Parameter this
        start local 1 // java.lang.Class annotationClass
         0: .line 67
            aload 0 /* this */
            aload 1 /* annotationClass */
            invokevirtual org.testng.internal.reflect.Parameter.getAnnotation:(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Class annotationClass
        end local 0 // org.testng.internal.reflect.Parameter this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/testng/internal/reflect/Parameter;
            0    2     1  annotationClass  Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;
    Signature: (Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;)Z
    MethodParameters:
                 Name  Flags
      annotationClass  

  public <T extends java.lang.annotation.Annotation> T getAnnotation(java.lang.Class<T>);
    descriptor: (Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.testng.internal.reflect.Parameter this
        start local 1 // java.lang.Class annotationClass
         0: .line 73
            aload 1 /* annotationClass */
            aload 0 /* this */
            getfield org.testng.internal.reflect.Parameter.declaredAnnotationsMap:Ljava/util/Map;
            aload 1 /* annotationClass */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.annotation.Annotation
            areturn
        end local 1 // java.lang.Class annotationClass
        end local 0 // org.testng.internal.reflect.Parameter this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/testng/internal/reflect/Parameter;
            0    1     1  annotationClass  Ljava/lang/Class<TT;>;
    Signature: <T::Ljava/lang/annotation/Annotation;>(Ljava/lang/Class<TT;>;)TT;
    MethodParameters:
                 Name  Flags
      annotationClass  final

  public java.lang.annotation.Annotation[] getAnnotations();
    descriptor: ()[Ljava/lang/annotation/Annotation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.testng.internal.reflect.Parameter this
         0: .line 80
            aload 0 /* this */
            invokevirtual org.testng.internal.reflect.Parameter.getDeclaredAnnotations:()[Ljava/lang/annotation/Annotation;
            areturn
        end local 0 // org.testng.internal.reflect.Parameter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/testng/internal/reflect/Parameter;

  public java.lang.annotation.Annotation[] getDeclaredAnnotations();
    descriptor: ()[Ljava/lang/annotation/Annotation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.testng.internal.reflect.Parameter this
         0: .line 86
            aload 0 /* this */
            getfield org.testng.internal.reflect.Parameter.declaredAnnotations:[Ljava/lang/annotation/Annotation;
            areturn
        end local 0 // org.testng.internal.reflect.Parameter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/testng/internal/reflect/Parameter;
}
SourceFile: "Parameter.java"