public class org.apache.commons.collections.ArrayStack extends java.util.ArrayList implements org.apache.commons.collections.Buffer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.collections.ArrayStack
  super_class: java.util.ArrayList
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2130079159931574599

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.ArrayStack this
         0: .line 55
            aload 0 /* this */
            invokespecial java.util.ArrayList.<init>:()V
         1: .line 56
            return
        end local 0 // org.apache.commons.collections.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/ArrayStack;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.ArrayStack this
        start local 1 // int initialSize
         0: .line 66
            aload 0 /* this */
            iload 1 /* initialSize */
            invokespecial java.util.ArrayList.<init>:(I)V
         1: .line 67
            return
        end local 1 // int initialSize
        end local 0 // org.apache.commons.collections.ArrayStack this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/apache/commons/collections/ArrayStack;
            0    2     1  initialSize  I
    MethodParameters:
             Name  Flags
      initialSize  

  public boolean empty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.ArrayStack this
         0: .line 78
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ArrayStack.isEmpty:()Z
            ireturn
        end local 0 // org.apache.commons.collections.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/ArrayStack;

  public java.lang.Object peek();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.ArrayStack this
         0: .line 88
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ArrayStack.size:()I
            istore 1 /* n */
        start local 1 // int n
         1: .line 89
            iload 1 /* n */
            ifgt 3
         2: .line 90
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
         3: .line 92
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* n */
            iconst_1
            isub
            invokevirtual org.apache.commons.collections.ArrayStack.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int n
        end local 0 // org.apache.commons.collections.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections/ArrayStack;
            1    4     1     n  I
    Exceptions:
      throws java.util.EmptyStackException

  public java.lang.Object peek(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.ArrayStack this
        start local 1 // int n
         0: .line 106
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ArrayStack.size:()I
            iload 1 /* n */
            isub
            iconst_1
            isub
            istore 2 /* m */
        start local 2 // int m
         1: .line 107
            iload 2 /* m */
            ifge 3
         2: .line 108
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
         3: .line 110
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* m */
            invokevirtual org.apache.commons.collections.ArrayStack.get:(I)Ljava/lang/Object;
            areturn
        end local 2 // int m
        end local 1 // int n
        end local 0 // org.apache.commons.collections.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections/ArrayStack;
            0    4     1     n  I
            1    4     2     m  I
    Exceptions:
      throws java.util.EmptyStackException
    MethodParameters:
      Name  Flags
      n     

  public java.lang.Object pop();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.ArrayStack this
         0: .line 121
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ArrayStack.size:()I
            istore 1 /* n */
        start local 1 // int n
         1: .line 122
            iload 1 /* n */
            ifgt 3
         2: .line 123
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
         3: .line 125
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* n */
            iconst_1
            isub
            invokevirtual org.apache.commons.collections.ArrayStack.remove:(I)Ljava/lang/Object;
            areturn
        end local 1 // int n
        end local 0 // org.apache.commons.collections.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections/ArrayStack;
            1    4     1     n  I
    Exceptions:
      throws java.util.EmptyStackException

  public java.lang.Object push(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.ArrayStack this
        start local 1 // java.lang.Object item
         0: .line 137
            aload 0 /* this */
            aload 1 /* item */
            invokevirtual org.apache.commons.collections.ArrayStack.add:(Ljava/lang/Object;)Z
            pop
         1: .line 138
            aload 1 /* item */
            areturn
        end local 1 // java.lang.Object item
        end local 0 // org.apache.commons.collections.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/ArrayStack;
            0    2     1  item  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      item  

  public int search(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.ArrayStack this
        start local 1 // java.lang.Object object
         0: .line 153
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ArrayStack.size:()I
            iconst_1
            isub
            istore 2 /* i */
        start local 2 // int i
         1: .line 154
            iconst_1
            istore 3 /* n */
        start local 3 // int n
         2: .line 155
            goto 9
         3: .line 156
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.apache.commons.collections.ArrayStack.get:(I)Ljava/lang/Object;
            astore 4 /* current */
        start local 4 // java.lang.Object current
         4: .line 157
            aload 1 /* object */
            ifnonnull 5
            aload 4 /* current */
            ifnull 6
         5: .line 158
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* object */
            ifnull 7
            aload 1 /* object */
            aload 4 /* current */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 7
         6: .line 159
      StackMap locals:
      StackMap stack:
            iload 3 /* n */
            ireturn
         7: .line 161
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
         8: .line 162
            iinc 3 /* n */ 1
        end local 4 // java.lang.Object current
         9: .line 155
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            ifge 3
        10: .line 164
            iconst_m1
            ireturn
        end local 3 // int n
        end local 2 // int i
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections.ArrayStack this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lorg/apache/commons/collections/ArrayStack;
            0   11     1   object  Ljava/lang/Object;
            1   11     2        i  I
            2   11     3        n  I
            4    9     4  current  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public java.lang.Object get();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.ArrayStack this
         0: .line 174
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ArrayStack.size:()I
            istore 1 /* size */
        start local 1 // int size
         1: .line 175
            iload 1 /* size */
            ifne 3
         2: .line 176
            new org.apache.commons.collections.BufferUnderflowException
            dup
            invokespecial org.apache.commons.collections.BufferUnderflowException.<init>:()V
            athrow
         3: .line 178
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* size */
            iconst_1
            isub
            invokevirtual org.apache.commons.collections.ArrayStack.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int size
        end local 0 // org.apache.commons.collections.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections/ArrayStack;
            1    4     1  size  I

  public java.lang.Object remove();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.ArrayStack this
         0: .line 188
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ArrayStack.size:()I
            istore 1 /* size */
        start local 1 // int size
         1: .line 189
            iload 1 /* size */
            ifne 3
         2: .line 190
            new org.apache.commons.collections.BufferUnderflowException
            dup
            invokespecial org.apache.commons.collections.BufferUnderflowException.<init>:()V
            athrow
         3: .line 192
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* size */
            iconst_1
            isub
            invokevirtual org.apache.commons.collections.ArrayStack.remove:(I)Ljava/lang/Object;
            areturn
        end local 1 // int size
        end local 0 // org.apache.commons.collections.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections/ArrayStack;
            1    4     1  size  I
}
SourceFile: "ArrayStack.java"