abstract class javax.swing.text.GapVector implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: javax.swing.text.GapVector
  super_class: java.lang.Object
{
  private java.lang.Object array;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  private int g0;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int g1;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.swing.text.GapVector this
         0: .line 51
            aload 0 /* this */
            bipush 10
            invokespecial javax.swing.text.GapVector.<init>:(I)V
         1: .line 52
            return
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/GapVector;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.text.GapVector this
        start local 1 // int initialLength
         0: .line 60
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* initialLength */
            invokevirtual javax.swing.text.GapVector.allocateArray:(I)Ljava/lang/Object;
            putfield javax.swing.text.GapVector.array:Ljava/lang/Object;
         2: .line 62
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.GapVector.g0:I
         3: .line 63
            aload 0 /* this */
            iload 1 /* initialLength */
            putfield javax.swing.text.GapVector.g1:I
         4: .line 64
            return
        end local 1 // int initialLength
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Ljavax/swing/text/GapVector;
            0    5     1  initialLength  I
    MethodParameters:
               Name  Flags
      initialLength  

  protected abstract java.lang.Object allocateArray(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      len   

  protected abstract int getArrayLength();
    descriptor: ()I
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected final java.lang.Object getArray();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.GapVector this
         0: .line 82
            aload 0 /* this */
            getfield javax.swing.text.GapVector.array:Ljava/lang/Object;
            areturn
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/GapVector;

  protected final int getGapStart();
    descriptor: ()I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.GapVector this
         0: .line 89
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            ireturn
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/GapVector;

  protected final int getGapEnd();
    descriptor: ()I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.GapVector this
         0: .line 96
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g1:I
            ireturn
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/GapVector;

  protected void replace(int, int, java.lang.Object, int);
    descriptor: (IILjava/lang/Object;I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=8, args_size=5
        start local 0 // javax.swing.text.GapVector this
        start local 1 // int position
        start local 2 // int rmSize
        start local 3 // java.lang.Object addItems
        start local 4 // int addSize
         0: .line 132
            iconst_0
            istore 5 /* addOffset */
        start local 5 // int addOffset
         1: .line 133
            iload 4 /* addSize */
            ifne 4
         2: .line 134
            aload 0 /* this */
            iload 1 /* position */
            iload 2 /* rmSize */
            invokevirtual javax.swing.text.GapVector.close:(II)V
         3: .line 135
            return
         4: .line 136
      StackMap locals: int
      StackMap stack:
            iload 2 /* rmSize */
            iload 4 /* addSize */
            if_icmple 7
         5: .line 138
            aload 0 /* this */
            iload 1 /* position */
            iload 4 /* addSize */
            iadd
            iload 2 /* rmSize */
            iload 4 /* addSize */
            isub
            invokevirtual javax.swing.text.GapVector.close:(II)V
         6: .line 139
            goto 11
         7: .line 141
      StackMap locals:
      StackMap stack:
            iload 4 /* addSize */
            iload 2 /* rmSize */
            isub
            istore 6 /* endSize */
        start local 6 // int endSize
         8: .line 142
            aload 0 /* this */
            iload 1 /* position */
            iload 2 /* rmSize */
            iadd
            iload 6 /* endSize */
            invokevirtual javax.swing.text.GapVector.open:(II)I
            istore 7 /* end */
        start local 7 // int end
         9: .line 143
            aload 3 /* addItems */
            iload 2 /* rmSize */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.array:Ljava/lang/Object;
            iload 7 /* end */
            iload 6 /* endSize */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 144
            iload 2 /* rmSize */
            istore 4 /* addSize */
        end local 7 // int end
        end local 6 // int endSize
        11: .line 146
      StackMap locals:
      StackMap stack:
            aload 3 /* addItems */
            iload 5 /* addOffset */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.array:Ljava/lang/Object;
            iload 1 /* position */
            iload 4 /* addSize */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        12: .line 147
            return
        end local 5 // int addOffset
        end local 4 // int addSize
        end local 3 // java.lang.Object addItems
        end local 2 // int rmSize
        end local 1 // int position
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Ljavax/swing/text/GapVector;
            0   13     1   position  I
            0   13     2     rmSize  I
            0   13     3   addItems  Ljava/lang/Object;
            0   13     4    addSize  I
            1   13     5  addOffset  I
            8   11     6    endSize  I
            9   11     7        end  I
    MethodParameters:
          Name  Flags
      position  
      rmSize    
      addItems  
      addSize   

  void close(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // javax.swing.text.GapVector this
        start local 1 // int position
        start local 2 // int nItems
         0: .line 157
            iload 2 /* nItems */
            ifne 1
            return
         1: .line 159
      StackMap locals:
      StackMap stack:
            iload 1 /* position */
            iload 2 /* nItems */
            iadd
            istore 3 /* end */
        start local 3 // int end
         2: .line 160
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g1:I
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            isub
            iload 2 /* nItems */
            iadd
            istore 4 /* new_gs */
        start local 4 // int new_gs
         3: .line 161
            iload 3 /* end */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            if_icmpgt 8
         4: .line 163
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            iload 3 /* end */
            if_icmpeq 6
         5: .line 164
            aload 0 /* this */
            iload 3 /* end */
            invokevirtual javax.swing.text.GapVector.shiftGap:(I)V
         6: .line 167
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            iload 2 /* nItems */
            isub
            invokevirtual javax.swing.text.GapVector.shiftGapStartDown:(I)V
         7: .line 168
            goto 15
      StackMap locals:
      StackMap stack:
         8: iload 1 /* position */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            if_icmplt 13
         9: .line 170
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            iload 1 /* position */
            if_icmpeq 11
        10: .line 171
            aload 0 /* this */
            iload 1 /* position */
            invokevirtual javax.swing.text.GapVector.shiftGap:(I)V
        11: .line 174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            iload 4 /* new_gs */
            iadd
            invokevirtual javax.swing.text.GapVector.shiftGapEndUp:(I)V
        12: .line 175
            goto 15
        13: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* position */
            invokevirtual javax.swing.text.GapVector.shiftGapStartDown:(I)V
        14: .line 179
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            iload 4 /* new_gs */
            iadd
            invokevirtual javax.swing.text.GapVector.shiftGapEndUp:(I)V
        15: .line 181
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int new_gs
        end local 3 // int end
        end local 2 // int nItems
        end local 1 // int position
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Ljavax/swing/text/GapVector;
            0   16     1  position  I
            0   16     2    nItems  I
            2   16     3       end  I
            3   16     4    new_gs  I
    MethodParameters:
          Name  Flags
      position  
      nItems    

  int open(int, int);
    descriptor: (II)I
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // javax.swing.text.GapVector this
        start local 1 // int position
        start local 2 // int nItems
         0: .line 190
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g1:I
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            isub
            istore 3 /* gapSize */
        start local 3 // int gapSize
         1: .line 191
            iload 2 /* nItems */
            ifne 5
         2: .line 192
            iload 1 /* position */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            if_icmple 4
         3: .line 193
            iload 1 /* position */
            iload 3 /* gapSize */
            iadd
            istore 1 /* position */
         4: .line 194
      StackMap locals: int
      StackMap stack:
            iload 1 /* position */
            ireturn
         5: .line 198
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* position */
            invokevirtual javax.swing.text.GapVector.shiftGap:(I)V
         6: .line 199
            iload 2 /* nItems */
            iload 3 /* gapSize */
            if_icmplt 9
         7: .line 201
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual javax.swing.text.GapVector.getArrayLength:()I
            iload 3 /* gapSize */
            isub
            iload 2 /* nItems */
            iadd
            invokevirtual javax.swing.text.GapVector.shiftEnd:(I)V
         8: .line 202
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g1:I
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            isub
            istore 3 /* gapSize */
         9: .line 205
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield javax.swing.text.GapVector.g0:I
            iload 2 /* nItems */
            iadd
            putfield javax.swing.text.GapVector.g0:I
        10: .line 206
            iload 1 /* position */
            ireturn
        end local 3 // int gapSize
        end local 2 // int nItems
        end local 1 // int position
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Ljavax/swing/text/GapVector;
            0   11     1  position  I
            0   11     2    nItems  I
            1   11     3   gapSize  I
    MethodParameters:
          Name  Flags
      position  
      nItems    

  void resize(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // javax.swing.text.GapVector this
        start local 1 // int nsize
         0: .line 214
            aload 0 /* this */
            iload 1 /* nsize */
            invokevirtual javax.swing.text.GapVector.allocateArray:(I)Ljava/lang/Object;
            astore 2 /* narray */
        start local 2 // java.lang.Object narray
         1: .line 215
            aload 0 /* this */
            getfield javax.swing.text.GapVector.array:Ljava/lang/Object;
            iconst_0
            aload 2 /* narray */
            iconst_0
            iload 1 /* nsize */
            aload 0 /* this */
            invokevirtual javax.swing.text.GapVector.getArrayLength:()I
            invokestatic java.lang.Math.min:(II)I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 216
            aload 0 /* this */
            aload 2 /* narray */
            putfield javax.swing.text.GapVector.array:Ljava/lang/Object;
         3: .line 217
            return
        end local 2 // java.lang.Object narray
        end local 1 // int nsize
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljavax/swing/text/GapVector;
            0    4     1   nsize  I
            1    4     2  narray  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      nsize  

  protected void shiftEnd(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // javax.swing.text.GapVector this
        start local 1 // int newSize
         0: .line 224
            aload 0 /* this */
            invokevirtual javax.swing.text.GapVector.getArrayLength:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 225
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g1:I
            istore 3 /* oldGapEnd */
        start local 3 // int oldGapEnd
         2: .line 226
            iload 2 /* oldSize */
            iload 3 /* oldGapEnd */
            isub
            istore 4 /* upperSize */
        start local 4 // int upperSize
         3: .line 227
            aload 0 /* this */
            iload 1 /* newSize */
            invokevirtual javax.swing.text.GapVector.getNewArraySize:(I)I
            istore 5 /* arrayLength */
        start local 5 // int arrayLength
         4: .line 228
            iload 5 /* arrayLength */
            iload 4 /* upperSize */
            isub
            istore 6 /* newGapEnd */
        start local 6 // int newGapEnd
         5: .line 229
            aload 0 /* this */
            iload 5 /* arrayLength */
            invokevirtual javax.swing.text.GapVector.resize:(I)V
         6: .line 230
            aload 0 /* this */
            iload 6 /* newGapEnd */
            putfield javax.swing.text.GapVector.g1:I
         7: .line 232
            iload 4 /* upperSize */
            ifeq 9
         8: .line 234
            aload 0 /* this */
            getfield javax.swing.text.GapVector.array:Ljava/lang/Object;
            iload 3 /* oldGapEnd */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.array:Ljava/lang/Object;
            iload 6 /* newGapEnd */
            iload 4 /* upperSize */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 236
      StackMap locals: javax.swing.text.GapVector int int int int int int
      StackMap stack:
            return
        end local 6 // int newGapEnd
        end local 5 // int arrayLength
        end local 4 // int upperSize
        end local 3 // int oldGapEnd
        end local 2 // int oldSize
        end local 1 // int newSize
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Ljavax/swing/text/GapVector;
            0   10     1      newSize  I
            1   10     2      oldSize  I
            2   10     3    oldGapEnd  I
            3   10     4    upperSize  I
            4   10     5  arrayLength  I
            5   10     6    newGapEnd  I
    MethodParameters:
         Name  Flags
      newSize  

  int getNewArraySize(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.GapVector this
        start local 1 // int reqSize
         0: .line 245
            iload 1 /* reqSize */
            iconst_1
            iadd
            iconst_2
            imul
            ireturn
        end local 1 // int reqSize
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Ljavax/swing/text/GapVector;
            0    1     1  reqSize  I
    MethodParameters:
         Name  Flags
      reqSize  

  protected void shiftGap(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // javax.swing.text.GapVector this
        start local 1 // int newGapStart
         0: .line 255
            iload 1 /* newGapStart */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            if_icmpne 2
         1: .line 256
            return
         2: .line 258
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g0:I
            istore 2 /* oldGapStart */
        start local 2 // int oldGapStart
         3: .line 259
            iload 1 /* newGapStart */
            iload 2 /* oldGapStart */
            isub
            istore 3 /* dg */
        start local 3 // int dg
         4: .line 260
            aload 0 /* this */
            getfield javax.swing.text.GapVector.g1:I
            istore 4 /* oldGapEnd */
        start local 4 // int oldGapEnd
         5: .line 261
            iload 4 /* oldGapEnd */
            iload 3 /* dg */
            iadd
            istore 5 /* newGapEnd */
        start local 5 // int newGapEnd
         6: .line 264
            aload 0 /* this */
            iload 1 /* newGapStart */
            putfield javax.swing.text.GapVector.g0:I
         7: .line 265
            aload 0 /* this */
            iload 5 /* newGapEnd */
            putfield javax.swing.text.GapVector.g1:I
         8: .line 266
            iload 3 /* dg */
            ifle 11
         9: .line 268
            aload 0 /* this */
            getfield javax.swing.text.GapVector.array:Ljava/lang/Object;
            iload 4 /* oldGapEnd */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.array:Ljava/lang/Object;
            iload 2 /* oldGapStart */
            iload 3 /* dg */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 269
            goto 13
      StackMap locals: javax.swing.text.GapVector int int int int int
      StackMap stack:
        11: iload 3 /* dg */
            ifge 13
        12: .line 271
            aload 0 /* this */
            getfield javax.swing.text.GapVector.array:Ljava/lang/Object;
            iload 1 /* newGapStart */
            aload 0 /* this */
            getfield javax.swing.text.GapVector.array:Ljava/lang/Object;
            iload 5 /* newGapEnd */
            iload 3 /* dg */
            ineg
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 273
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int newGapEnd
        end local 4 // int oldGapEnd
        end local 3 // int dg
        end local 2 // int oldGapStart
        end local 1 // int newGapStart
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Ljavax/swing/text/GapVector;
            0   14     1  newGapStart  I
            3   14     2  oldGapStart  I
            4   14     3           dg  I
            5   14     4    oldGapEnd  I
            6   14     5    newGapEnd  I
    MethodParameters:
             Name  Flags
      newGapStart  

  protected void shiftGapStartDown(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.GapVector this
        start local 1 // int newGapStart
         0: .line 284
            aload 0 /* this */
            iload 1 /* newGapStart */
            putfield javax.swing.text.GapVector.g0:I
         1: .line 285
            return
        end local 1 // int newGapStart
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Ljavax/swing/text/GapVector;
            0    2     1  newGapStart  I
    MethodParameters:
             Name  Flags
      newGapStart  

  protected void shiftGapEndUp(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.GapVector this
        start local 1 // int newGapEnd
         0: .line 296
            aload 0 /* this */
            iload 1 /* newGapEnd */
            putfield javax.swing.text.GapVector.g1:I
         1: .line 297
            return
        end local 1 // int newGapEnd
        end local 0 // javax.swing.text.GapVector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Ljavax/swing/text/GapVector;
            0    2     1  newGapEnd  I
    MethodParameters:
           Name  Flags
      newGapEnd  
}
SourceFile: "GapVector.java"