public class javax.swing.text.Segment implements java.lang.Cloneable, java.text.CharacterIterator, java.lang.CharSequence
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.swing.text.Segment
  super_class: java.lang.Object
{
  public char[] array;
    descriptor: [C
    flags: (0x0001) ACC_PUBLIC

  public int offset;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public int count;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  private boolean partialReturn;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 70
            aload 0 /* this */
            aconst_null
            iconst_0
            iconst_0
            invokespecial javax.swing.text.Segment.<init>:([CII)V
         1: .line 71
            return
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/Segment;

  public void <init>(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // javax.swing.text.Segment this
        start local 1 // char[] array
        start local 2 // int offset
        start local 3 // int count
         0: .line 80
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 81
            aload 0 /* this */
            aload 1 /* array */
            putfield javax.swing.text.Segment.array:[C
         2: .line 82
            aload 0 /* this */
            iload 2 /* offset */
            putfield javax.swing.text.Segment.offset:I
         3: .line 83
            aload 0 /* this */
            iload 3 /* count */
            putfield javax.swing.text.Segment.count:I
         4: .line 84
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.Segment.partialReturn:Z
         5: .line 85
            return
        end local 3 // int count
        end local 2 // int offset
        end local 1 // char[] array
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Ljavax/swing/text/Segment;
            0    6     1   array  [C
            0    6     2  offset  I
            0    6     3   count  I
    MethodParameters:
        Name  Flags
      array   
      offset  
      count   

  public void setPartialReturn(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.Segment this
        start local 1 // boolean p
         0: .line 99
            aload 0 /* this */
            iload 1 /* p */
            putfield javax.swing.text.Segment.partialReturn:Z
         1: .line 100
            return
        end local 1 // boolean p
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/Segment;
            0    2     1     p  Z
    MethodParameters:
      Name  Flags
      p     

  public boolean isPartialReturn();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 109
            aload 0 /* this */
            getfield javax.swing.text.Segment.partialReturn:Z
            ireturn
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/Segment;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 118
            aload 0 /* this */
            getfield javax.swing.text.Segment.array:[C
            ifnull 2
         1: .line 119
            new java.lang.String
            dup
            aload 0 /* this */
            getfield javax.swing.text.Segment.array:[C
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            invokespecial java.lang.String.<init>:([CII)V
            areturn
         2: .line 121
      StackMap locals:
      StackMap stack:
            ldc ""
            areturn
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/swing/text/Segment;

  public char first();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 134
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            putfield javax.swing.text.Segment.pos:I
         1: .line 135
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            ifeq 3
         2: .line 136
            aload 0 /* this */
            getfield javax.swing.text.Segment.array:[C
            aload 0 /* this */
            getfield javax.swing.text.Segment.pos:I
            caload
            ireturn
         3: .line 138
      StackMap locals:
      StackMap stack:
            ldc 65535
            ireturn
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/swing/text/Segment;

  public char last();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 149
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            iadd
            putfield javax.swing.text.Segment.pos:I
         1: .line 150
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            ifeq 4
         2: .line 151
            aload 0 /* this */
            dup
            getfield javax.swing.text.Segment.pos:I
            iconst_1
            isub
            putfield javax.swing.text.Segment.pos:I
         3: .line 152
            aload 0 /* this */
            getfield javax.swing.text.Segment.array:[C
            aload 0 /* this */
            getfield javax.swing.text.Segment.pos:I
            caload
            ireturn
         4: .line 154
      StackMap locals:
      StackMap stack:
            ldc 65535
            ireturn
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/text/Segment;

  public char current();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 165
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            ifeq 2
            aload 0 /* this */
            getfield javax.swing.text.Segment.pos:I
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            iadd
            if_icmpge 2
         1: .line 166
            aload 0 /* this */
            getfield javax.swing.text.Segment.array:[C
            aload 0 /* this */
            getfield javax.swing.text.Segment.pos:I
            caload
            ireturn
         2: .line 168
      StackMap locals:
      StackMap stack:
            ldc 65535
            ireturn
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/swing/text/Segment;

  public char next();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 181
            aload 0 /* this */
            dup
            getfield javax.swing.text.Segment.pos:I
            iconst_1
            iadd
            putfield javax.swing.text.Segment.pos:I
         1: .line 182
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            iadd
            istore 1 /* end */
        start local 1 // int end
         2: .line 183
            aload 0 /* this */
            getfield javax.swing.text.Segment.pos:I
            iload 1 /* end */
            if_icmplt 5
         3: .line 184
            aload 0 /* this */
            iload 1 /* end */
            putfield javax.swing.text.Segment.pos:I
         4: .line 185
            ldc 65535
            ireturn
         5: .line 187
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.text.Segment.current:()C
            ireturn
        end local 1 // int end
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljavax/swing/text/Segment;
            2    6     1   end  I

  public char previous();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 199
            aload 0 /* this */
            getfield javax.swing.text.Segment.pos:I
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            if_icmpne 2
         1: .line 200
            ldc 65535
            ireturn
         2: .line 202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield javax.swing.text.Segment.pos:I
            iconst_1
            isub
            putfield javax.swing.text.Segment.pos:I
         3: .line 203
            aload 0 /* this */
            invokevirtual javax.swing.text.Segment.current:()C
            ireturn
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/swing/text/Segment;

  public char setIndex(int);
    descriptor: (I)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // javax.swing.text.Segment this
        start local 1 // int position
         0: .line 216
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            iadd
            istore 2 /* end */
        start local 2 // int end
         1: .line 217
            iload 1 /* position */
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            if_icmplt 2
            iload 1 /* position */
            iload 2 /* end */
            if_icmple 3
         2: .line 218
      StackMap locals: int
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "bad position: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* position */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 220
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* position */
            putfield javax.swing.text.Segment.pos:I
         4: .line 221
            aload 0 /* this */
            getfield javax.swing.text.Segment.pos:I
            iload 2 /* end */
            if_icmpeq 6
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            ifeq 6
         5: .line 222
            aload 0 /* this */
            getfield javax.swing.text.Segment.array:[C
            aload 0 /* this */
            getfield javax.swing.text.Segment.pos:I
            caload
            ireturn
         6: .line 224
      StackMap locals:
      StackMap stack:
            ldc 65535
            ireturn
        end local 2 // int end
        end local 1 // int position
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Ljavax/swing/text/Segment;
            0    7     1  position  I
            1    7     2       end  I
    MethodParameters:
          Name  Flags
      position  

  public int getBeginIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 233
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            ireturn
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/Segment;

  public int getEndIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 243
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            iadd
            ireturn
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/Segment;

  public int getIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 252
            aload 0 /* this */
            getfield javax.swing.text.Segment.pos:I
            ireturn
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/Segment;

  public char charAt(int);
    descriptor: (I)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.text.Segment this
        start local 1 // int index
         0: .line 262
            iload 1 /* index */
            iflt 2
         1: .line 263
            iload 1 /* index */
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            if_icmplt 3
         2: .line 264
      StackMap locals:
      StackMap stack:
            new java.lang.StringIndexOutOfBoundsException
            dup
            iload 1 /* index */
            invokespecial java.lang.StringIndexOutOfBoundsException.<init>:(I)V
            athrow
         3: .line 266
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.text.Segment.array:[C
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            iload 1 /* index */
            iadd
            caload
            ireturn
        end local 1 // int index
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljavax/swing/text/Segment;
            0    4     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 274
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            ireturn
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/Segment;

  public java.lang.CharSequence subSequence(int, int);
    descriptor: (II)Ljava/lang/CharSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // javax.swing.text.Segment this
        start local 1 // int start
        start local 2 // int end
         0: .line 282
            iload 1 /* start */
            ifge 2
         1: .line 283
            new java.lang.StringIndexOutOfBoundsException
            dup
            iload 1 /* start */
            invokespecial java.lang.StringIndexOutOfBoundsException.<init>:(I)V
            athrow
         2: .line 285
      StackMap locals:
      StackMap stack:
            iload 2 /* end */
            aload 0 /* this */
            getfield javax.swing.text.Segment.count:I
            if_icmple 4
         3: .line 286
            new java.lang.StringIndexOutOfBoundsException
            dup
            iload 2 /* end */
            invokespecial java.lang.StringIndexOutOfBoundsException.<init>:(I)V
            athrow
         4: .line 288
      StackMap locals:
      StackMap stack:
            iload 1 /* start */
            iload 2 /* end */
            if_icmple 6
         5: .line 289
            new java.lang.StringIndexOutOfBoundsException
            dup
            iload 2 /* end */
            iload 1 /* start */
            isub
            invokespecial java.lang.StringIndexOutOfBoundsException.<init>:(I)V
            athrow
         6: .line 291
      StackMap locals:
      StackMap stack:
            new javax.swing.text.Segment
            dup
            invokespecial javax.swing.text.Segment.<init>:()V
            astore 3 /* segment */
        start local 3 // javax.swing.text.Segment segment
         7: .line 292
            aload 3 /* segment */
            aload 0 /* this */
            getfield javax.swing.text.Segment.array:[C
            putfield javax.swing.text.Segment.array:[C
         8: .line 293
            aload 3 /* segment */
            aload 0 /* this */
            getfield javax.swing.text.Segment.offset:I
            iload 1 /* start */
            iadd
            putfield javax.swing.text.Segment.offset:I
         9: .line 294
            aload 3 /* segment */
            iload 2 /* end */
            iload 1 /* start */
            isub
            putfield javax.swing.text.Segment.count:I
        10: .line 295
            aload 3 /* segment */
            areturn
        end local 3 // javax.swing.text.Segment segment
        end local 2 // int end
        end local 1 // int start
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Ljavax/swing/text/Segment;
            0   11     1    start  I
            0   11     2      end  I
            7   11     3  segment  Ljavax/swing/text/Segment;
    MethodParameters:
       Name  Flags
      start  
      end    

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // javax.swing.text.Segment this
         0: .line 306
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            astore 1 /* o */
        start local 1 // java.lang.Object o
         1: .line 307
            goto 4
        end local 1 // java.lang.Object o
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
         2: pop
         3: .line 308
            aconst_null
            astore 1 /* o */
        start local 1 // java.lang.Object o
         4: .line 310
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* o */
            areturn
        end local 1 // java.lang.Object o
        end local 0 // javax.swing.text.Segment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/text/Segment;
            1    2     1     o  Ljava/lang/Object;
            4    5     1     o  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.CloneNotSupportedException
}
SourceFile: "Segment.java"