public class org.xml.sax.ext.Attributes2Impl extends org.xml.sax.helpers.AttributesImpl implements org.xml.sax.ext.Attributes2
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.xml.sax.ext.Attributes2Impl
  super_class: org.xml.sax.helpers.AttributesImpl
{
  private boolean[] declared;
    descriptor: [Z
    flags: (0x0002) ACC_PRIVATE

  private boolean[] specified;
    descriptor: [Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.xml.sax.ext.Attributes2Impl this
         0: .line 71
            aload 0 /* this */
            invokespecial org.xml.sax.helpers.AttributesImpl.<init>:()V
         1: .line 72
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.ext.Attributes2Impl.specified:[Z
         2: .line 73
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.ext.Attributes2Impl.declared:[Z
         3: .line 74
            return
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/xml/sax/ext/Attributes2Impl;

  public void <init>(org.xml.sax.Attributes);
    descriptor: (Lorg/xml/sax/Attributes;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // org.xml.sax.Attributes atts
         0: .line 93
            aload 0 /* this */
            aload 1 /* atts */
            invokespecial org.xml.sax.helpers.AttributesImpl.<init>:(Lorg/xml/sax/Attributes;)V
         1: .line 94
            return
        end local 1 // org.xml.sax.Attributes atts
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/xml/sax/ext/Attributes2Impl;
            0    2     1  atts  Lorg/xml/sax/Attributes;
    MethodParameters:
      Name  Flags
      atts  

  public boolean isDeclared(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // int index
         0: .line 108
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            if_icmplt 4
         1: .line 109
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
         2: .line 110
            new java.lang.StringBuilder
            dup
            ldc "No attribute at index: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 109
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            iload 1 /* index */
            baload
            ireturn
        end local 1 // int index
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/xml/sax/ext/Attributes2Impl;
            0    5     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public boolean isDeclared(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // java.lang.String uri
        start local 2 // java.lang.String localName
         0: .line 121
            aload 0 /* this */
            aload 1 /* uri */
            aload 2 /* localName */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getIndex:(Ljava/lang/String;Ljava/lang/String;)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 123
            iload 3 /* index */
            ifge 7
         2: .line 124
            new java.lang.IllegalArgumentException
            dup
         3: .line 125
            new java.lang.StringBuilder
            dup
            ldc "No such attribute: local="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* localName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 126
            ldc ", namespace="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* uri */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 125
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 124
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 127
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            iload 3 /* index */
            baload
            ireturn
        end local 3 // int index
        end local 2 // java.lang.String localName
        end local 1 // java.lang.String uri
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lorg/xml/sax/ext/Attributes2Impl;
            0    8     1        uri  Ljava/lang/String;
            0    8     2  localName  Ljava/lang/String;
            1    8     3      index  I
    MethodParameters:
           Name  Flags
      uri        
      localName  

  public boolean isDeclared(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // java.lang.String qName
         0: .line 137
            aload 0 /* this */
            aload 1 /* qName */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getIndex:(Ljava/lang/String;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 139
            iload 2 /* index */
            ifge 5
         2: .line 140
            new java.lang.IllegalArgumentException
            dup
         3: .line 141
            new java.lang.StringBuilder
            dup
            ldc "No such attribute: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* qName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 140
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 142
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            iload 2 /* index */
            baload
            ireturn
        end local 2 // int index
        end local 1 // java.lang.String qName
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/xml/sax/ext/Attributes2Impl;
            0    6     1  qName  Ljava/lang/String;
            1    6     2  index  I
    MethodParameters:
       Name  Flags
      qName  

  public boolean isSpecified(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // int index
         0: .line 156
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            if_icmplt 4
         1: .line 157
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
         2: .line 158
            new java.lang.StringBuilder
            dup
            ldc "No attribute at index: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 157
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iload 1 /* index */
            baload
            ireturn
        end local 1 // int index
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/xml/sax/ext/Attributes2Impl;
            0    5     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public boolean isSpecified(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // java.lang.String uri
        start local 2 // java.lang.String localName
         0: .line 175
            aload 0 /* this */
            aload 1 /* uri */
            aload 2 /* localName */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getIndex:(Ljava/lang/String;Ljava/lang/String;)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 177
            iload 3 /* index */
            ifge 7
         2: .line 178
            new java.lang.IllegalArgumentException
            dup
         3: .line 179
            new java.lang.StringBuilder
            dup
            ldc "No such attribute: local="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* localName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 180
            ldc ", namespace="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* uri */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 179
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 178
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 181
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iload 3 /* index */
            baload
            ireturn
        end local 3 // int index
        end local 2 // java.lang.String localName
        end local 1 // java.lang.String uri
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lorg/xml/sax/ext/Attributes2Impl;
            0    8     1        uri  Ljava/lang/String;
            0    8     2  localName  Ljava/lang/String;
            1    8     3      index  I
    MethodParameters:
           Name  Flags
      uri        
      localName  

  public boolean isSpecified(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // java.lang.String qName
         0: .line 195
            aload 0 /* this */
            aload 1 /* qName */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getIndex:(Ljava/lang/String;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 197
            iload 2 /* index */
            ifge 5
         2: .line 198
            new java.lang.IllegalArgumentException
            dup
         3: .line 199
            new java.lang.StringBuilder
            dup
            ldc "No such attribute: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* qName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 198
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 200
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iload 2 /* index */
            baload
            ireturn
        end local 2 // int index
        end local 1 // java.lang.String qName
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/xml/sax/ext/Attributes2Impl;
            0    6     1  qName  Ljava/lang/String;
            1    6     2  index  I
    MethodParameters:
       Name  Flags
      qName  

  public void setAttributes(org.xml.sax.Attributes);
    descriptor: (Lorg/xml/sax/Attributes;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // org.xml.sax.Attributes atts
         0: .line 220
            aload 1 /* atts */
            invokeinterface org.xml.sax.Attributes.getLength:()I
            istore 2 /* length */
        start local 2 // int length
         1: .line 222
            aload 0 /* this */
            aload 1 /* atts */
            invokespecial org.xml.sax.helpers.AttributesImpl.setAttributes:(Lorg/xml/sax/Attributes;)V
         2: .line 223
            aload 0 /* this */
            iload 2 /* length */
            newarray 4
            putfield org.xml.sax.ext.Attributes2Impl.declared:[Z
         3: .line 224
            aload 0 /* this */
            iload 2 /* length */
            newarray 4
            putfield org.xml.sax.ext.Attributes2Impl.specified:[Z
         4: .line 226
            aload 1 /* atts */
            instanceof org.xml.sax.ext.Attributes2
            ifeq 13
         5: .line 227
            aload 1 /* atts */
            checkcast org.xml.sax.ext.Attributes2
            astore 3 /* a2 */
        start local 3 // org.xml.sax.ext.Attributes2 a2
         6: .line 228
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 11
         8: .line 229
      StackMap locals: int org.xml.sax.ext.Attributes2 int
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            iload 4 /* i */
            aload 3 /* a2 */
            iload 4 /* i */
            invokeinterface org.xml.sax.ext.Attributes2.isDeclared:(I)Z
            bastore
         9: .line 230
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iload 4 /* i */
            aload 3 /* a2 */
            iload 4 /* i */
            invokeinterface org.xml.sax.ext.Attributes2.isSpecified:(I)Z
            bastore
        10: .line 228
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 4 /* i */
            iload 2 /* length */
            if_icmplt 8
        end local 4 // int i
        end local 3 // org.xml.sax.ext.Attributes2 a2
        12: .line 232
            goto 21
        13: .line 233
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        14: goto 20
        15: .line 234
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            iload 3 /* i */
            ldc "CDATA"
            aload 1 /* atts */
            iload 3 /* i */
            invokeinterface org.xml.sax.Attributes.getType:(I)Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 16
            iconst_0
            goto 17
      StackMap locals: org.xml.sax.ext.Attributes2Impl org.xml.sax.Attributes int int
      StackMap stack: boolean[] int
        16: iconst_1
      StackMap locals: org.xml.sax.ext.Attributes2Impl org.xml.sax.Attributes int int
      StackMap stack: boolean[] int int
        17: bastore
        18: .line 235
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iload 3 /* i */
            iconst_1
            bastore
        19: .line 233
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 3 /* i */
            iload 2 /* length */
            if_icmplt 15
        end local 3 // int i
        21: .line 238
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int length
        end local 1 // org.xml.sax.Attributes atts
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   22     0    this  Lorg/xml/sax/ext/Attributes2Impl;
            0   22     1    atts  Lorg/xml/sax/Attributes;
            1   22     2  length  I
            6   12     3      a2  Lorg/xml/sax/ext/Attributes2;
            7   12     4       i  I
           14   21     3       i  I
    MethodParameters:
      Name  Flags
      atts  

  public void addAttribute(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=6
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // java.lang.String uri
        start local 2 // java.lang.String localName
        start local 3 // java.lang.String qName
        start local 4 // java.lang.String type
        start local 5 // java.lang.String value
         0: .line 255
            aload 0 /* this */
            aload 1 /* uri */
            aload 2 /* localName */
            aload 3 /* qName */
            aload 4 /* type */
            aload 5 /* value */
            invokespecial org.xml.sax.helpers.AttributesImpl.addAttribute:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 258
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            istore 6 /* length */
        start local 6 // int length
         2: .line 259
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            ifnonnull 6
         3: .line 261
            aload 0 /* this */
            iload 6 /* length */
            newarray 4
            putfield org.xml.sax.ext.Attributes2Impl.specified:[Z
         4: .line 262
            aload 0 /* this */
            iload 6 /* length */
            newarray 4
            putfield org.xml.sax.ext.Attributes2Impl.declared:[Z
         5: .line 263
            goto 13
      StackMap locals: int
      StackMap stack:
         6: iload 6 /* length */
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            arraylength
            if_icmple 13
         7: .line 266
            iload 6 /* length */
            newarray 4
            astore 7 /* newFlags */
        start local 7 // boolean[] newFlags
         8: .line 267
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            iconst_0
            aload 7 /* newFlags */
            iconst_0
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 268
            aload 0 /* this */
            aload 7 /* newFlags */
            putfield org.xml.sax.ext.Attributes2Impl.declared:[Z
        10: .line 270
            iload 6 /* length */
            newarray 4
            astore 7 /* newFlags */
        11: .line 271
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iconst_0
            aload 7 /* newFlags */
            iconst_0
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        12: .line 272
            aload 0 /* this */
            aload 7 /* newFlags */
            putfield org.xml.sax.ext.Attributes2Impl.specified:[Z
        end local 7 // boolean[] newFlags
        13: .line 275
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iload 6 /* length */
            iconst_1
            isub
            iconst_1
            bastore
        14: .line 276
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            iload 6 /* length */
            iconst_1
            isub
            ldc "CDATA"
            aload 4 /* type */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 15
            iconst_0
            goto 16
      StackMap locals: org.xml.sax.ext.Attributes2Impl java.lang.String java.lang.String java.lang.String java.lang.String java.lang.String int
      StackMap stack: boolean[] int
        15: iconst_1
      StackMap locals: org.xml.sax.ext.Attributes2Impl java.lang.String java.lang.String java.lang.String java.lang.String java.lang.String int
      StackMap stack: boolean[] int int
        16: bastore
        17: .line 277
            return
        end local 6 // int length
        end local 5 // java.lang.String value
        end local 4 // java.lang.String type
        end local 3 // java.lang.String qName
        end local 2 // java.lang.String localName
        end local 1 // java.lang.String uri
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lorg/xml/sax/ext/Attributes2Impl;
            0   18     1        uri  Ljava/lang/String;
            0   18     2  localName  Ljava/lang/String;
            0   18     3      qName  Ljava/lang/String;
            0   18     4       type  Ljava/lang/String;
            0   18     5      value  Ljava/lang/String;
            2   18     6     length  I
            8   13     7   newFlags  [Z
    MethodParameters:
           Name  Flags
      uri        
      localName  
      qName      
      type       
      value      

  public void removeAttribute(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // int index
         0: .line 283
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            iconst_1
            isub
            istore 2 /* origMax */
        start local 2 // int origMax
         1: .line 285
            aload 0 /* this */
            iload 1 /* index */
            invokespecial org.xml.sax.helpers.AttributesImpl.removeAttribute:(I)V
         2: .line 286
            iload 1 /* index */
            iload 2 /* origMax */
            if_icmpeq 9
         3: .line 287
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            iload 1 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            iload 1 /* index */
         4: .line 288
            iload 2 /* origMax */
            iload 1 /* index */
            isub
         5: .line 287
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 289
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iload 1 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iload 1 /* index */
         7: .line 290
            iload 2 /* origMax */
            iload 1 /* index */
            isub
         8: .line 289
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 292
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int origMax
        end local 1 // int index
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/xml/sax/ext/Attributes2Impl;
            0   10     1    index  I
            1   10     2  origMax  I
    MethodParameters:
       Name  Flags
      index  

  public void setDeclared(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // int index
        start local 2 // boolean value
         0: .line 308
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            if_icmplt 4
         1: .line 309
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
         2: .line 310
            new java.lang.StringBuilder
            dup
            ldc "No attribute at index: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 309
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            iload 1 /* index */
            iload 2 /* value */
            bastore
         5: .line 312
            return
        end local 2 // boolean value
        end local 1 // int index
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/xml/sax/ext/Attributes2Impl;
            0    6     1  index  I
            0    6     2  value  Z
    MethodParameters:
       Name  Flags
      index  
      value  

  public void setSpecified(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.xml.sax.ext.Attributes2Impl this
        start local 1 // int index
        start local 2 // boolean value
         0: .line 327
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            if_icmplt 4
         1: .line 328
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
         2: .line 329
            new java.lang.StringBuilder
            dup
            ldc "No attribute at index: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 328
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 330
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iload 1 /* index */
            iload 2 /* value */
            bastore
         5: .line 331
            return
        end local 2 // boolean value
        end local 1 // int index
        end local 0 // org.xml.sax.ext.Attributes2Impl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/xml/sax/ext/Attributes2Impl;
            0    6     1  index  I
            0    6     2  value  Z
    MethodParameters:
       Name  Flags
      index  
      value  
}
SourceFile: "Attributes2Impl.java"