public class javax.management.AttributeList extends java.util.ArrayList<java.lang.Object>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.management.AttributeList
  super_class: java.util.ArrayList
{
  private transient boolean typeSafe;
    descriptor: Z
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient boolean tainted;
    descriptor: Z
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -4077085769279709076

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.management.AttributeList this
         0: .line 71
            aload 0 /* this */
            invokespecial java.util.ArrayList.<init>:()V
         1: .line 72
            return
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/management/AttributeList;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.management.AttributeList this
        start local 1 // int initialCapacity
         0: .line 83
            aload 0 /* this */
            iload 1 /* initialCapacity */
            invokespecial java.util.ArrayList.<init>:(I)V
         1: .line 84
            return
        end local 1 // int initialCapacity
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Ljavax/management/AttributeList;
            0    2     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>(javax.management.AttributeList);
    descriptor: (Ljavax/management/AttributeList;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.management.AttributeList this
        start local 1 // javax.management.AttributeList list
         0: .line 100
            aload 0 /* this */
            aload 1 /* list */
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
         1: .line 101
            return
        end local 1 // javax.management.AttributeList list
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/management/AttributeList;
            0    2     1  list  Ljavax/management/AttributeList;
    MethodParameters:
      Name  Flags
      list  

  public void <init>(java.util.List<javax.management.Attribute>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.management.AttributeList this
        start local 1 // java.util.List list
         0: .line 119
            aload 0 /* this */
            invokespecial java.util.ArrayList.<init>:()V
         1: .line 122
            aload 1 /* list */
            ifnonnull 3
         2: .line 123
            new java.lang.IllegalArgumentException
            dup
            ldc "Null parameter"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 127
      StackMap locals: javax.management.AttributeList java.util.List
      StackMap stack:
            aload 1 /* list */
            invokestatic javax.management.AttributeList.checkTypeSafe:(Ljava/util/Collection;)V
         4: .line 131
            aload 0 /* this */
            aload 1 /* list */
            invokespecial java.util.ArrayList.addAll:(Ljava/util/Collection;)Z
            pop
         5: .line 132
            return
        end local 1 // java.util.List list
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljavax/management/AttributeList;
            0    6     1  list  Ljava/util/List<Ljavax/management/Attribute;>;
    Signature: (Ljava/util/List<Ljavax/management/Attribute;>;)V
    MethodParameters:
      Name  Flags
      list  

  public java.util.List<javax.management.Attribute> asList();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.management.AttributeList this
         0: .line 157
            aload 0 /* this */
            getfield javax.management.AttributeList.typeSafe:Z
            ifne 4
         1: .line 158
            aload 0 /* this */
            getfield javax.management.AttributeList.tainted:Z
            ifeq 3
         2: .line 159
            aload 0 /* this */
            invokestatic javax.management.AttributeList.checkTypeSafe:(Ljava/util/Collection;)V
         3: .line 160
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javax.management.AttributeList.typeSafe:Z
         4: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/management/AttributeList;
    Signature: ()Ljava/util/List<Ljavax/management/Attribute;>;

  public void add(javax.management.Attribute);
    descriptor: (Ljavax/management/Attribute;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.management.AttributeList this
        start local 1 // javax.management.Attribute object
         0: .line 171
            aload 0 /* this */
            aload 1 /* object */
            invokespecial java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         1: .line 172
            return
        end local 1 // javax.management.Attribute object
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Ljavax/management/AttributeList;
            0    2     1  object  Ljavax/management/Attribute;
    MethodParameters:
        Name  Flags
      object  

  public void add(int, javax.management.Attribute);
    descriptor: (ILjavax/management/Attribute;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // javax.management.AttributeList this
        start local 1 // int index
        start local 2 // javax.management.Attribute object
         0: .line 187
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* object */
            invokespecial java.util.ArrayList.add:(ILjava/lang/Object;)V
         1: .line 188
            goto 6
         2: .line 189
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            astore 3 /* e */
        start local 3 // java.lang.IndexOutOfBoundsException e
         3: .line 190
            new javax.management.RuntimeOperationsException
            dup
            aload 3 /* e */
         4: .line 191
            ldc "The specified index is out of range"
         5: .line 190
            invokespecial javax.management.RuntimeOperationsException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
        end local 3 // java.lang.IndexOutOfBoundsException e
         6: .line 193
      StackMap locals:
      StackMap stack:
            return
        end local 2 // javax.management.Attribute object
        end local 1 // int index
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Ljavax/management/AttributeList;
            0    7     1   index  I
            0    7     2  object  Ljavax/management/Attribute;
            3    6     3       e  Ljava/lang/IndexOutOfBoundsException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.IndexOutOfBoundsException
    MethodParameters:
        Name  Flags
      index   
      object  

  public void set(int, javax.management.Attribute);
    descriptor: (ILjavax/management/Attribute;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // javax.management.AttributeList this
        start local 1 // int index
        start local 2 // javax.management.Attribute object
         0: .line 206
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* object */
            invokespecial java.util.ArrayList.set:(ILjava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 207
            goto 6
         2: .line 208
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            astore 3 /* e */
        start local 3 // java.lang.IndexOutOfBoundsException e
         3: .line 209
            new javax.management.RuntimeOperationsException
            dup
            aload 3 /* e */
         4: .line 210
            ldc "The specified index is out of range"
         5: .line 209
            invokespecial javax.management.RuntimeOperationsException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
        end local 3 // java.lang.IndexOutOfBoundsException e
         6: .line 212
      StackMap locals:
      StackMap stack:
            return
        end local 2 // javax.management.Attribute object
        end local 1 // int index
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Ljavax/management/AttributeList;
            0    7     1   index  I
            0    7     2  object  Ljavax/management/Attribute;
            3    6     3       e  Ljava/lang/IndexOutOfBoundsException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.IndexOutOfBoundsException
    MethodParameters:
        Name  Flags
      index   
      object  

  public boolean addAll(javax.management.AttributeList);
    descriptor: (Ljavax/management/AttributeList;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.management.AttributeList this
        start local 1 // javax.management.AttributeList list
         0: .line 226
            aload 0 /* this */
            aload 1 /* list */
            invokespecial java.util.ArrayList.addAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // javax.management.AttributeList list
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/management/AttributeList;
            0    1     1  list  Ljavax/management/AttributeList;
    MethodParameters:
      Name  Flags
      list  

  public boolean addAll(int, javax.management.AttributeList);
    descriptor: (ILjavax/management/AttributeList;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // javax.management.AttributeList this
        start local 1 // int index
        start local 2 // javax.management.AttributeList list
         0: .line 247
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* list */
            invokespecial java.util.ArrayList.addAll:(ILjava/util/Collection;)Z
         1: ireturn
         2: .line 249
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            astore 3 /* e */
        start local 3 // java.lang.IndexOutOfBoundsException e
         3: .line 250
            new javax.management.RuntimeOperationsException
            dup
            aload 3 /* e */
         4: .line 251
            ldc "The specified index is out of range"
         5: .line 250
            invokespecial javax.management.RuntimeOperationsException.<init>:(Ljava/lang/RuntimeException;Ljava/lang/String;)V
            athrow
        end local 3 // java.lang.IndexOutOfBoundsException e
        end local 2 // javax.management.AttributeList list
        end local 1 // int index
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Ljavax/management/AttributeList;
            0    6     1  index  I
            0    6     2   list  Ljavax/management/AttributeList;
            3    6     3      e  Ljava/lang/IndexOutOfBoundsException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.IndexOutOfBoundsException
    MethodParameters:
       Name  Flags
      index  
      list   

  public boolean add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.management.AttributeList this
        start local 1 // java.lang.Object o
         0: .line 263
            aload 0 /* this */
            getfield javax.management.AttributeList.tainted:Z
            ifne 2
         1: .line 264
            aload 0 /* this */
            aload 1 /* o */
            invokestatic javax.management.AttributeList.isTainted:(Ljava/lang/Object;)Z
            putfield javax.management.AttributeList.tainted:Z
         2: .line 265
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.management.AttributeList.typeSafe:Z
            ifeq 4
         3: .line 266
            aload 1 /* o */
            invokestatic javax.management.AttributeList.checkTypeSafe:(Ljava/lang/Object;)V
         4: .line 267
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* o */
            invokespecial java.util.ArrayList.add:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/management/AttributeList;
            0    5     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public void add(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // javax.management.AttributeList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 272
            aload 0 /* this */
            getfield javax.management.AttributeList.tainted:Z
            ifne 2
         1: .line 273
            aload 0 /* this */
            aload 2 /* element */
            invokestatic javax.management.AttributeList.isTainted:(Ljava/lang/Object;)Z
            putfield javax.management.AttributeList.tainted:Z
         2: .line 274
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.management.AttributeList.typeSafe:Z
            ifeq 4
         3: .line 275
            aload 2 /* element */
            invokestatic javax.management.AttributeList.checkTypeSafe:(Ljava/lang/Object;)V
         4: .line 276
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* element */
            invokespecial java.util.ArrayList.add:(ILjava/lang/Object;)V
         5: .line 277
            return
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Ljavax/management/AttributeList;
            0    6     1    index  I
            0    6     2  element  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      index    
      element  

  public boolean addAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.management.AttributeList this
        start local 1 // java.util.Collection c
         0: .line 281
            aload 0 /* this */
            getfield javax.management.AttributeList.tainted:Z
            ifne 2
         1: .line 282
            aload 0 /* this */
            aload 1 /* c */
            invokestatic javax.management.AttributeList.isTainted:(Ljava/util/Collection;)Z
            putfield javax.management.AttributeList.tainted:Z
         2: .line 283
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.management.AttributeList.typeSafe:Z
            ifeq 4
         3: .line 284
            aload 1 /* c */
            invokestatic javax.management.AttributeList.checkTypeSafe:(Ljava/util/Collection;)V
         4: .line 285
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* c */
            invokespecial java.util.ArrayList.addAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/management/AttributeList;
            0    5     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean addAll(int, java.util.Collection<?>);
    descriptor: (ILjava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // javax.management.AttributeList this
        start local 1 // int index
        start local 2 // java.util.Collection c
         0: .line 290
            aload 0 /* this */
            getfield javax.management.AttributeList.tainted:Z
            ifne 2
         1: .line 291
            aload 0 /* this */
            aload 2 /* c */
            invokestatic javax.management.AttributeList.isTainted:(Ljava/util/Collection;)Z
            putfield javax.management.AttributeList.tainted:Z
         2: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.management.AttributeList.typeSafe:Z
            ifeq 4
         3: .line 293
            aload 2 /* c */
            invokestatic javax.management.AttributeList.checkTypeSafe:(Ljava/util/Collection;)V
         4: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* c */
            invokespecial java.util.ArrayList.addAll:(ILjava/util/Collection;)Z
            ireturn
        end local 2 // java.util.Collection c
        end local 1 // int index
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Ljavax/management/AttributeList;
            0    5     1  index  I
            0    5     2      c  Ljava/util/Collection<*>;
    Signature: (ILjava/util/Collection<*>;)Z
    MethodParameters:
       Name  Flags
      index  
      c      

  public java.lang.Object set(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // javax.management.AttributeList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 299
            aload 0 /* this */
            getfield javax.management.AttributeList.tainted:Z
            ifne 2
         1: .line 300
            aload 0 /* this */
            aload 2 /* element */
            invokestatic javax.management.AttributeList.isTainted:(Ljava/lang/Object;)Z
            putfield javax.management.AttributeList.tainted:Z
         2: .line 301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.management.AttributeList.typeSafe:Z
            ifeq 4
         3: .line 302
            aload 2 /* element */
            invokestatic javax.management.AttributeList.checkTypeSafe:(Ljava/lang/Object;)V
         4: .line 303
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* element */
            invokespecial java.util.ArrayList.set:(ILjava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // javax.management.AttributeList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Ljavax/management/AttributeList;
            0    5     1    index  I
            0    5     2  element  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      index    
      element  

  private static void checkTypeSafe(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.lang.Object o
         0: .line 311
            aload 0 /* o */
            checkcast javax.management.Attribute
            astore 0 /* o */
         1: .line 312
            goto 4
      StackMap locals:
      StackMap stack: java.lang.ClassCastException
         2: astore 1 /* e */
        start local 1 // java.lang.ClassCastException e
         3: .line 313
            new java.lang.IllegalArgumentException
            dup
            aload 1 /* e */
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.ClassCastException e
         4: .line 315
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.lang.Object o
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     o  Ljava/lang/Object;
            3    4     1     e  Ljava/lang/ClassCastException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.ClassCastException
    MethodParameters:
      Name  Flags
      o     

  private static void checkTypeSafe(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.util.Collection c
         0: .line 323
            aload 0 /* c */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 2
            goto 3
      StackMap locals: java.util.Collection top java.util.Iterator
      StackMap stack:
         1: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 1 /* o */
        start local 1 // java.lang.Object o
         2: .line 324
            aload 1 /* o */
            checkcast javax.management.Attribute
            pop
        end local 1 // java.lang.Object o
         3: .line 323
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 325
            goto 7
      StackMap locals: java.util.Collection
      StackMap stack: java.lang.ClassCastException
         5: astore 1 /* e */
        start local 1 // java.lang.ClassCastException e
         6: .line 326
            new java.lang.IllegalArgumentException
            dup
            aload 1 /* e */
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.ClassCastException e
         7: .line 328
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.util.Collection c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0     c  Ljava/util/Collection<*>;
            2    3     1     o  Ljava/lang/Object;
            6    7     1     e  Ljava/lang/ClassCastException;
      Exception table:
        from    to  target  type
           0     4       5  Class java.lang.ClassCastException
    Signature: (Ljava/util/Collection<*>;)V
    MethodParameters:
      Name  Flags
      c     

  private static boolean isTainted(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.Object o
         0: .line 335
            aload 0 /* o */
            invokestatic javax.management.AttributeList.checkTypeSafe:(Ljava/lang/Object;)V
         1: .line 336
            goto 4
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
         2: pop
         3: .line 337
            iconst_1
            ireturn
         4: .line 339
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // java.lang.Object o
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     o  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.IllegalArgumentException
    MethodParameters:
      Name  Flags
      o     

  private static boolean isTainted(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.Collection c
         0: .line 347
            aload 0 /* c */
            invokestatic javax.management.AttributeList.checkTypeSafe:(Ljava/util/Collection;)V
         1: .line 348
            goto 4
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
         2: pop
         3: .line 349
            iconst_1
            ireturn
         4: .line 351
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // java.util.Collection c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     c  Ljava/util/Collection<*>;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.IllegalArgumentException
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     
}
Signature: Ljava/util/ArrayList<Ljava/lang/Object;>;
SourceFile: "AttributeList.java"