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 61
            aload 0 /* this */
            invokespecial org.xml.sax.helpers.AttributesImpl.<init>:()V
         1: .line 62
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.ext.Attributes2Impl.specified:[Z
         2: .line 63
            aload 0 /* this */
            aconst_null
            putfield org.xml.sax.ext.Attributes2Impl.declared:[Z
         3: .line 64
            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 83
            aload 0 /* this */
            aload 1 /* atts */
            invokespecial org.xml.sax.helpers.AttributesImpl.<init>:(Lorg/xml/sax/Attributes;)V
         1: .line 84
            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 98
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            if_icmplt 4
         1: .line 99
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
         2: .line 100
            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 99
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 101
      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 111
            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 113
            iload 3 /* index */
            ifge 7
         2: .line 114
            new java.lang.IllegalArgumentException
            dup
         3: .line 115
            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 116
            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 115
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 114
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 117
      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 127
            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 129
            iload 2 /* index */
            ifge 5
         2: .line 130
            new java.lang.IllegalArgumentException
            dup
         3: .line 131
            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 130
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 132
      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 146
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            if_icmplt 4
         1: .line 147
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
         2: .line 148
            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 147
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 149
      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 165
            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 167
            iload 3 /* index */
            ifge 7
         2: .line 168
            new java.lang.IllegalArgumentException
            dup
         3: .line 169
            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 170
            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 169
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 168
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 171
      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 185
            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 187
            iload 2 /* index */
            ifge 5
         2: .line 188
            new java.lang.IllegalArgumentException
            dup
         3: .line 189
            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 188
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 190
      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 210
            aload 1 /* atts */
            invokeinterface org.xml.sax.Attributes.getLength:()I
            istore 2 /* length */
        start local 2 // int length
         1: .line 212
            aload 0 /* this */
            aload 1 /* atts */
            invokespecial org.xml.sax.helpers.AttributesImpl.setAttributes:(Lorg/xml/sax/Attributes;)V
         2: .line 213
            aload 0 /* this */
            iload 2 /* length */
            newarray 4
            putfield org.xml.sax.ext.Attributes2Impl.declared:[Z
         3: .line 214
            aload 0 /* this */
            iload 2 /* length */
            newarray 4
            putfield org.xml.sax.ext.Attributes2Impl.specified:[Z
         4: .line 216
            aload 1 /* atts */
            instanceof org.xml.sax.ext.Attributes2
            ifeq 13
         5: .line 217
            aload 1 /* atts */
            checkcast org.xml.sax.ext.Attributes2
            astore 3 /* a2 */
        start local 3 // org.xml.sax.ext.Attributes2 a2
         6: .line 218
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 11
         8: .line 219
      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 220
            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 218
            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 222
            goto 21
        13: .line 223
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        14: goto 20
        15: .line 224
      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 225
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iload 3 /* i */
            iconst_1
            bastore
        19: .line 223
            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 228
      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 245
            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 248
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            istore 6 /* length */
        start local 6 // int length
         2: .line 249
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            ifnonnull 6
         3: .line 251
            aload 0 /* this */
            iload 6 /* length */
            newarray 4
            putfield org.xml.sax.ext.Attributes2Impl.specified:[Z
         4: .line 252
            aload 0 /* this */
            iload 6 /* length */
            newarray 4
            putfield org.xml.sax.ext.Attributes2Impl.declared:[Z
         5: .line 253
            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 256
            iload 6 /* length */
            newarray 4
            astore 7 /* newFlags */
        start local 7 // boolean[] newFlags
         8: .line 257
            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 258
            aload 0 /* this */
            aload 7 /* newFlags */
            putfield org.xml.sax.ext.Attributes2Impl.declared:[Z
        10: .line 260
            iload 6 /* length */
            newarray 4
            astore 7 /* newFlags */
        11: .line 261
            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 262
            aload 0 /* this */
            aload 7 /* newFlags */
            putfield org.xml.sax.ext.Attributes2Impl.specified:[Z
        end local 7 // boolean[] newFlags
        13: .line 265
      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 266
            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 267
            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 273
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            iconst_1
            isub
            istore 2 /* origMax */
        start local 2 // int origMax
         1: .line 275
            aload 0 /* this */
            iload 1 /* index */
            invokespecial org.xml.sax.helpers.AttributesImpl.removeAttribute:(I)V
         2: .line 276
            iload 1 /* index */
            iload 2 /* origMax */
            if_icmpeq 9
         3: .line 277
            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 278
            iload 2 /* origMax */
            iload 1 /* index */
            isub
         5: .line 277
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 279
            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 280
            iload 2 /* origMax */
            iload 1 /* index */
            isub
         8: .line 279
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 282
      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 298
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            if_icmplt 4
         1: .line 299
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
         2: .line 300
            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 299
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.declared:[Z
            iload 1 /* index */
            iload 2 /* value */
            bastore
         5: .line 302
            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 317
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual org.xml.sax.ext.Attributes2Impl.getLength:()I
            if_icmplt 4
         1: .line 318
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
         2: .line 319
            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 318
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xml.sax.ext.Attributes2Impl.specified:[Z
            iload 1 /* index */
            iload 2 /* value */
            bastore
         5: .line 321
            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"