public class org.apache.fop.hyphenation.CharVector implements java.lang.Cloneable, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.fop.hyphenation.CharVector
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4263472982169004048

  private static final int DEFAULT_BLOCK_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2048

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

  private char[] array;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

  private int n;
    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 // org.apache.fop.hyphenation.CharVector this
         0: .line 54
            aload 0 /* this */
            sipush 2048
            invokespecial org.apache.fop.hyphenation.CharVector.<init>:(I)V
         1: .line 55
            return
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/fop/hyphenation/CharVector;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.fop.hyphenation.CharVector this
        start local 1 // int capacity
         0: .line 61
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            iload 1 /* capacity */
            ifle 4
         2: .line 63
            aload 0 /* this */
            iload 1 /* capacity */
            putfield org.apache.fop.hyphenation.CharVector.blockSize:I
         3: .line 64
            goto 5
         4: .line 65
      StackMap locals: org.apache.fop.hyphenation.CharVector int
      StackMap stack:
            aload 0 /* this */
            sipush 2048
            putfield org.apache.fop.hyphenation.CharVector.blockSize:I
         5: .line 67
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.blockSize:I
            newarray 5
            putfield org.apache.fop.hyphenation.CharVector.array:[C
         6: .line 68
            aload 0 /* this */
            iconst_0
            putfield org.apache.fop.hyphenation.CharVector.n:I
         7: .line 69
            return
        end local 1 // int capacity
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/apache/fop/hyphenation/CharVector;
            0    8     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public void <init>(char[]);
    descriptor: ([C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.fop.hyphenation.CharVector this
        start local 1 // char[] a
         0: .line 75
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 76
            aload 0 /* this */
            sipush 2048
            putfield org.apache.fop.hyphenation.CharVector.blockSize:I
         2: .line 77
            aload 0 /* this */
            aload 1 /* a */
            putfield org.apache.fop.hyphenation.CharVector.array:[C
         3: .line 78
            aload 0 /* this */
            aload 1 /* a */
            arraylength
            putfield org.apache.fop.hyphenation.CharVector.n:I
         4: .line 79
            return
        end local 1 // char[] a
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/fop/hyphenation/CharVector;
            0    5     1     a  [C
    MethodParameters:
      Name  Flags
      a     

  public void <init>(char[], int);
    descriptor: ([CI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.fop.hyphenation.CharVector this
        start local 1 // char[] a
        start local 2 // int capacity
         0: .line 86
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 87
            iload 2 /* capacity */
            ifle 4
         2: .line 88
            aload 0 /* this */
            iload 2 /* capacity */
            putfield org.apache.fop.hyphenation.CharVector.blockSize:I
         3: .line 89
            goto 5
         4: .line 90
      StackMap locals: org.apache.fop.hyphenation.CharVector char[] int
      StackMap stack:
            aload 0 /* this */
            sipush 2048
            putfield org.apache.fop.hyphenation.CharVector.blockSize:I
         5: .line 92
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* a */
            putfield org.apache.fop.hyphenation.CharVector.array:[C
         6: .line 93
            aload 0 /* this */
            aload 1 /* a */
            arraylength
            putfield org.apache.fop.hyphenation.CharVector.n:I
         7: .line 94
            return
        end local 2 // int capacity
        end local 1 // char[] a
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/apache/fop/hyphenation/CharVector;
            0    8     1         a  [C
            0    8     2  capacity  I
    MethodParameters:
          Name  Flags
      a         
      capacity  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.fop.hyphenation.CharVector this
         0: .line 100
            aload 0 /* this */
            iconst_0
            putfield org.apache.fop.hyphenation.CharVector.n:I
         1: .line 101
            return
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/fop/hyphenation/CharVector;

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.fop.hyphenation.CharVector this
         0: .line 105
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast org.apache.fop.hyphenation.CharVector
            astore 1 /* cv */
        start local 1 // org.apache.fop.hyphenation.CharVector cv
         1: .line 106
            aload 1 /* cv */
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.array:[C
            invokevirtual char[].clone:()Ljava/lang/Object;
            checkcast char[]
            putfield org.apache.fop.hyphenation.CharVector.array:[C
         2: .line 107
            aload 1 /* cv */
            areturn
        end local 1 // org.apache.fop.hyphenation.CharVector cv
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/fop/hyphenation/CharVector;
            1    3     1    cv  Lorg/apache/fop/hyphenation/CharVector;
    Exceptions:
      throws java.lang.CloneNotSupportedException

  public char[] getArray();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.fop.hyphenation.CharVector this
         0: .line 115
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.array:[C
            areturn
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/fop/hyphenation/CharVector;

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.fop.hyphenation.CharVector this
         0: .line 123
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.n:I
            ireturn
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/fop/hyphenation/CharVector;

  public int capacity();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.fop.hyphenation.CharVector this
         0: .line 131
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.array:[C
            arraylength
            ireturn
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/fop/hyphenation/CharVector;

  public void put(int, char);
    descriptor: (IC)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.fop.hyphenation.CharVector this
        start local 1 // int index
        start local 2 // char val
         0: .line 140
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.array:[C
            iload 1 /* index */
            iload 2 /* val */
            castore
         1: .line 141
            return
        end local 2 // char val
        end local 1 // int index
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/fop/hyphenation/CharVector;
            0    2     1  index  I
            0    2     2    val  C
    MethodParameters:
       Name  Flags
      index  
      val    

  public char get(int);
    descriptor: (I)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.fop.hyphenation.CharVector this
        start local 1 // int index
         0: .line 149
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.array:[C
            iload 1 /* index */
            caload
            ireturn
        end local 1 // int index
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/fop/hyphenation/CharVector;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int alloc(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.apache.fop.hyphenation.CharVector this
        start local 1 // int size
         0: .line 158
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.n:I
            istore 2 /* index */
        start local 2 // int index
         1: .line 159
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.array:[C
            arraylength
            istore 3 /* len */
        start local 3 // int len
         2: .line 160
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.n:I
            iload 1 /* size */
            iadd
            iload 3 /* len */
            if_icmplt 6
         3: .line 161
            iload 3 /* len */
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.blockSize:I
            iadd
            newarray 5
            astore 4 /* aux */
        start local 4 // char[] aux
         4: .line 162
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.array:[C
            iconst_0
            aload 4 /* aux */
            iconst_0
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 163
            aload 0 /* this */
            aload 4 /* aux */
            putfield org.apache.fop.hyphenation.CharVector.array:[C
        end local 4 // char[] aux
         6: .line 165
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.fop.hyphenation.CharVector.n:I
            iload 1 /* size */
            iadd
            putfield org.apache.fop.hyphenation.CharVector.n:I
         7: .line 166
            iload 2 /* index */
            ireturn
        end local 3 // int len
        end local 2 // int index
        end local 1 // int size
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/apache/fop/hyphenation/CharVector;
            0    8     1   size  I
            1    8     2  index  I
            2    8     3    len  I
            4    6     4    aux  [C
    MethodParameters:
      Name  Flags
      size  

  public void trimToSize();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.fop.hyphenation.CharVector this
         0: .line 173
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.n:I
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.array:[C
            arraylength
            if_icmpge 4
         1: .line 174
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.n:I
            newarray 5
            astore 1 /* aux */
        start local 1 // char[] aux
         2: .line 175
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.array:[C
            iconst_0
            aload 1 /* aux */
            iconst_0
            aload 0 /* this */
            getfield org.apache.fop.hyphenation.CharVector.n:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 176
            aload 0 /* this */
            aload 1 /* aux */
            putfield org.apache.fop.hyphenation.CharVector.array:[C
        end local 1 // char[] aux
         4: .line 178
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.fop.hyphenation.CharVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/fop/hyphenation/CharVector;
            2    4     1   aux  [C
}
SourceFile: "CharVector.java"