public class org.apache.commons.collections.list.TreeList extends java.util.AbstractList
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.collections.list.TreeList
  super_class: java.util.AbstractList
{
  private org.apache.commons.collections.list.TreeList$AVLNode root;
    descriptor: Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE

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

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

  public void <init>(java.util.Collection);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList this
        start local 1 // java.util.Collection coll
         0: .line 86
            aload 0 /* this */
            invokespecial java.util.AbstractList.<init>:()V
         1: .line 87
            aload 0 /* this */
            aload 1 /* coll */
            invokevirtual org.apache.commons.collections.list.TreeList.addAll:(Ljava/util/Collection;)Z
            pop
         2: .line 88
            return
        end local 1 // java.util.Collection coll
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/TreeList;
            0    3     1  coll  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      coll  

  public java.lang.Object get(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList this
        start local 1 // int index
         0: .line 98
            aload 0 /* this */
            iload 1 /* index */
            iconst_0
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList.size:()I
            iconst_1
            isub
            invokevirtual org.apache.commons.collections.list.TreeList.checkInterval:(III)V
         1: .line 99
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            iload 1 /* index */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.get:(I)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getValue:()Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/commons/collections/list/TreeList;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList this
         0: .line 108
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.size:I
            ireturn
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/list/TreeList;

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList this
         0: .line 118
            aload 0 /* this */
            iconst_0
            invokevirtual org.apache.commons.collections.list.TreeList.listIterator:(I)Ljava/util/ListIterator;
            areturn
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/list/TreeList;

  public java.util.ListIterator listIterator();
    descriptor: ()Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList this
         0: .line 128
            aload 0 /* this */
            iconst_0
            invokevirtual org.apache.commons.collections.list.TreeList.listIterator:(I)Ljava/util/ListIterator;
            areturn
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/list/TreeList;

  public java.util.ListIterator listIterator(int);
    descriptor: (I)Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList this
        start local 1 // int fromIndex
         0: .line 140
            aload 0 /* this */
            iload 1 /* fromIndex */
            iconst_0
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList.size:()I
            invokevirtual org.apache.commons.collections.list.TreeList.checkInterval:(III)V
         1: .line 141
            new org.apache.commons.collections.list.TreeList$TreeListIterator
            dup
            aload 0 /* this */
            iload 1 /* fromIndex */
            invokespecial org.apache.commons.collections.list.TreeList$TreeListIterator.<init>:(Lorg/apache/commons/collections/list/TreeList;I)V
            areturn
        end local 1 // int fromIndex
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/commons/collections/list/TreeList;
            0    2     1  fromIndex  I
    MethodParameters:
           Name  Flags
      fromIndex  

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList this
        start local 1 // java.lang.Object object
         0: .line 151
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 2
         1: .line 152
            iconst_m1
            ireturn
         2: .line 154
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 1 /* object */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.indexOf:(Ljava/lang/Object;I)I
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/commons/collections/list/TreeList;
            0    3     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList this
        start local 1 // java.lang.Object object
         0: .line 163
            aload 0 /* this */
            aload 1 /* object */
            invokevirtual org.apache.commons.collections.list.TreeList.indexOf:(Ljava/lang/Object;)I
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/commons/collections/list/TreeList;
            0    2     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList this
         0: .line 173
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList.size:()I
            anewarray java.lang.Object
            astore 1 /* array */
        start local 1 // java.lang.Object[] array
         1: .line 174
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnull 3
         2: .line 175
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 1 /* array */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.toArray:([Ljava/lang/Object;I)V
         3: .line 177
      StackMap locals: java.lang.Object[]
      StackMap stack:
            aload 1 /* array */
            areturn
        end local 1 // java.lang.Object[] array
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/commons/collections/list/TreeList;
            1    4     1  array  [Ljava/lang/Object;

  public void add(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=3
        start local 0 // org.apache.commons.collections.list.TreeList this
        start local 1 // int index
        start local 2 // java.lang.Object obj
         0: .line 188
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList.modCount:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList.modCount:I
         1: .line 189
            aload 0 /* this */
            iload 1 /* index */
            iconst_0
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList.size:()I
            invokevirtual org.apache.commons.collections.list.TreeList.checkInterval:(III)V
         2: .line 190
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 5
         3: .line 191
            aload 0 /* this */
            new org.apache.commons.collections.list.TreeList$AVLNode
            dup
            iload 1 /* index */
            aload 2 /* obj */
            aconst_null
            aconst_null
            invokespecial org.apache.commons.collections.list.TreeList$AVLNode.<init>:(ILjava/lang/Object;Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
            putfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         4: .line 192
            goto 6
         5: .line 193
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            iload 1 /* index */
            aload 2 /* obj */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.insert:(ILjava/lang/Object;)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         6: .line 195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList.size:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList.size:I
         7: .line 196
            return
        end local 2 // java.lang.Object obj
        end local 1 // int index
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/apache/commons/collections/list/TreeList;
            0    8     1  index  I
            0    8     2    obj  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      index  
      obj    

  public java.lang.Object set(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.apache.commons.collections.list.TreeList this
        start local 1 // int index
        start local 2 // java.lang.Object obj
         0: .line 207
            aload 0 /* this */
            iload 1 /* index */
            iconst_0
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList.size:()I
            iconst_1
            isub
            invokevirtual org.apache.commons.collections.list.TreeList.checkInterval:(III)V
         1: .line 208
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            iload 1 /* index */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.get:(I)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            astore 3 /* node */
        start local 3 // org.apache.commons.collections.list.TreeList$AVLNode node
         2: .line 209
            aload 3 /* node */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
            astore 4 /* result */
        start local 4 // java.lang.Object result
         3: .line 210
            aload 3 /* node */
            aload 2 /* obj */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setValue:(Ljava/lang/Object;)V
         4: .line 211
            aload 4 /* result */
            areturn
        end local 4 // java.lang.Object result
        end local 3 // org.apache.commons.collections.list.TreeList$AVLNode node
        end local 2 // java.lang.Object obj
        end local 1 // int index
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/apache/commons/collections/list/TreeList;
            0    5     1   index  I
            0    5     2     obj  Ljava/lang/Object;
            2    5     3    node  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            3    5     4  result  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      index  
      obj    

  public java.lang.Object remove(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList this
        start local 1 // int index
         0: .line 221
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList.modCount:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList.modCount:I
         1: .line 222
            aload 0 /* this */
            iload 1 /* index */
            iconst_0
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList.size:()I
            iconst_1
            isub
            invokevirtual org.apache.commons.collections.list.TreeList.checkInterval:(III)V
         2: .line 223
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.apache.commons.collections.list.TreeList.get:(I)Ljava/lang/Object;
            astore 2 /* result */
        start local 2 // java.lang.Object result
         3: .line 224
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            iload 1 /* index */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.remove:(I)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         4: .line 225
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList.size:I
            iconst_1
            isub
            putfield org.apache.commons.collections.list.TreeList.size:I
         5: .line 226
            aload 2 /* result */
            areturn
        end local 2 // java.lang.Object result
        end local 1 // int index
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/apache/commons/collections/list/TreeList;
            0    6     1   index  I
            3    6     2  result  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      index  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList this
         0: .line 233
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList.modCount:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList.modCount:I
         1: .line 234
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         2: .line 235
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.list.TreeList.size:I
         3: .line 236
            return
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections/list/TreeList;

  private void checkInterval(int, int, int);
    descriptor: (III)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.apache.commons.collections.list.TreeList this
        start local 1 // int index
        start local 2 // int startIndex
        start local 3 // int endIndex
         0: .line 248
            iload 1 /* index */
            iload 2 /* startIndex */
            if_icmplt 1
            iload 1 /* index */
            iload 3 /* endIndex */
            if_icmple 2
         1: .line 249
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid index:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", size="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 251
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int endIndex
        end local 2 // int startIndex
        end local 1 // int index
        end local 0 // org.apache.commons.collections.list.TreeList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/apache/commons/collections/list/TreeList;
            0    3     1       index  I
            0    3     2  startIndex  I
            0    3     3    endIndex  I
    MethodParameters:
            Name  Flags
      index       
      startIndex  
      endIndex    

  static int access$0(org.apache.commons.collections.list.TreeList);
    descriptor: (Lorg/apache/commons/collections/list/TreeList;)I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 59
            aload 0
            getfield org.apache.commons.collections.list.TreeList.modCount:I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "TreeList.java"
NestMembers:
  org.apache.commons.collections.list.TreeList$AVLNode  org.apache.commons.collections.list.TreeList$TreeListIterator
InnerClasses:
  AVLNode = org.apache.commons.collections.list.TreeList$AVLNode of org.apache.commons.collections.list.TreeList
  TreeListIterator = org.apache.commons.collections.list.TreeList$TreeListIterator of org.apache.commons.collections.list.TreeList