class org.apache.commons.collections.list.TreeList$TreeListIterator implements java.util.ListIterator, org.apache.commons.collections.OrderedIterator
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.collections.list.TreeList$TreeListIterator
  super_class: java.lang.Object
{
  protected final org.apache.commons.collections.list.TreeList parent;
    descriptor: Lorg/apache/commons/collections/list/TreeList;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected org.apache.commons.collections.list.TreeList$AVLNode next;
    descriptor: Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0004) ACC_PROTECTED

  protected int nextIndex;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected org.apache.commons.collections.list.TreeList$AVLNode current;
    descriptor: Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0004) ACC_PROTECTED

  protected int currentIndex;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int expectedModCount;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected void <init>(org.apache.commons.collections.list.TreeList, int);
    descriptor: (Lorg/apache/commons/collections/list/TreeList;I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
        start local 1 // org.apache.commons.collections.list.TreeList parent
        start local 2 // int fromIndex
         0: .line 811
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 812
            aload 0 /* this */
            aload 1 /* parent */
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.parent:Lorg/apache/commons/collections/list/TreeList;
         2: .line 813
            aload 0 /* this */
            aload 1 /* parent */
            invokestatic org.apache.commons.collections.list.TreeList.access$0:(Lorg/apache/commons/collections/list/TreeList;)I
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.expectedModCount:I
         3: .line 814
            aload 0 /* this */
            aload 1 /* parent */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 4
            aconst_null
            goto 5
      StackMap locals: org.apache.commons.collections.list.TreeList$TreeListIterator org.apache.commons.collections.list.TreeList int
      StackMap stack: org.apache.commons.collections.list.TreeList$TreeListIterator
         4: aload 1 /* parent */
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            iload 2 /* fromIndex */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.get:(I)Lorg/apache/commons/collections/list/TreeList$AVLNode;
      StackMap locals: org.apache.commons.collections.list.TreeList$TreeListIterator org.apache.commons.collections.list.TreeList int
      StackMap stack: org.apache.commons.collections.list.TreeList$TreeListIterator org.apache.commons.collections.list.TreeList$AVLNode
         5: putfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         6: .line 815
            aload 0 /* this */
            iload 2 /* fromIndex */
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
         7: .line 816
            aload 0 /* this */
            iconst_m1
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.currentIndex:I
         8: .line 817
            return
        end local 2 // int fromIndex
        end local 1 // org.apache.commons.collections.list.TreeList parent
        end local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/apache/commons/collections/list/TreeList$TreeListIterator;
            0    9     1     parent  Lorg/apache/commons/collections/list/TreeList;
            0    9     2  fromIndex  I
    Exceptions:
      throws java.lang.IndexOutOfBoundsException
    MethodParameters:
           Name  Flags
      parent     
      fromIndex  

  protected void checkModCount();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
         0: .line 827
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.parent:Lorg/apache/commons/collections/list/TreeList;
            invokestatic org.apache.commons.collections.list.TreeList.access$0:(Lorg/apache/commons/collections/list/TreeList;)I
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.expectedModCount:I
            if_icmpeq 2
         1: .line 828
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
         2: .line 830
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/TreeList$TreeListIterator;

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
         0: .line 833
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.parent:Lorg/apache/commons/collections/list/TreeList;
            invokevirtual org.apache.commons.collections.list.TreeList.size:()I
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/list/TreeList$TreeListIterator;

  public java.lang.Object next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
         0: .line 837
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$TreeListIterator.checkModCount:()V
         1: .line 838
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$TreeListIterator.hasNext:()Z
            ifne 3
         2: .line 839
            new java.util.NoSuchElementException
            dup
            new java.lang.StringBuilder
            dup
            ldc "No element at index "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.util.NoSuchElementException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 841
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 5
         4: .line 842
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.parent:Lorg/apache/commons/collections/list/TreeList;
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.get:(I)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         5: .line 844
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getValue:()Ljava/lang/Object;
            astore 1 /* value */
        start local 1 // java.lang.Object value
         6: .line 845
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.current:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         7: .line 846
            aload 0 /* this */
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.currentIndex:I
         8: .line 847
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.next:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         9: .line 848
            aload 1 /* value */
            areturn
        end local 1 // java.lang.Object value
        end local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/apache/commons/collections/list/TreeList$TreeListIterator;
            6   10     1  value  Ljava/lang/Object;

  public boolean hasPrevious();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
         0: .line 852
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/list/TreeList$TreeListIterator;

  public java.lang.Object previous();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
         0: .line 856
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$TreeListIterator.checkModCount:()V
         1: .line 857
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$TreeListIterator.hasPrevious:()Z
            ifne 3
         2: .line 858
            new java.util.NoSuchElementException
            dup
            ldc "Already at start of list."
            invokespecial java.util.NoSuchElementException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 860
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 6
         4: .line 861
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.parent:Lorg/apache/commons/collections/list/TreeList;
            getfield org.apache.commons.collections.list.TreeList.root:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            iconst_1
            isub
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.get:(I)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         5: .line 862
            goto 7
         6: .line 863
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.previous:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         7: .line 865
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getValue:()Ljava/lang/Object;
            astore 1 /* value */
        start local 1 // java.lang.Object value
         8: .line 866
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.current:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         9: .line 867
            aload 0 /* this */
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            iconst_1
            isub
            dup_x1
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.currentIndex:I
        10: .line 868
            aload 1 /* value */
            areturn
        end local 1 // java.lang.Object value
        end local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/apache/commons/collections/list/TreeList$TreeListIterator;
            8   11     1  value  Ljava/lang/Object;

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

  public int previousIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
         0: .line 876
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:()I
            iconst_1
            isub
            ireturn
        end local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/list/TreeList$TreeListIterator;

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
         0: .line 880
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$TreeListIterator.checkModCount:()V
         1: .line 881
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.currentIndex:I
            iconst_m1
            if_icmpne 3
         2: .line 882
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         3: .line 884
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.parent:Lorg/apache/commons/collections/list/TreeList;
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.currentIndex:I
            invokevirtual org.apache.commons.collections.list.TreeList.remove:(I)Ljava/lang/Object;
            pop
         4: .line 885
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.currentIndex:I
            if_icmpeq 6
         5: .line 887
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            iconst_1
            isub
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
         6: .line 891
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.next:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         7: .line 892
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.current:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         8: .line 893
            aload 0 /* this */
            iconst_m1
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.currentIndex:I
         9: .line 894
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.expectedModCount:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.expectedModCount:I
        10: .line 895
            return
        end local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/commons/collections/list/TreeList$TreeListIterator;

  public void set(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
        start local 1 // java.lang.Object obj
         0: .line 898
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$TreeListIterator.checkModCount:()V
         1: .line 899
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.current:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 3
         2: .line 900
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         3: .line 902
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.current:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 1 /* obj */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setValue:(Ljava/lang/Object;)V
         4: .line 903
            return
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/collections/list/TreeList$TreeListIterator;
            0    5     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public void add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
        start local 1 // java.lang.Object obj
         0: .line 906
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$TreeListIterator.checkModCount:()V
         1: .line 907
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.parent:Lorg/apache/commons/collections/list/TreeList;
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            aload 1 /* obj */
            invokevirtual org.apache.commons.collections.list.TreeList.add:(ILjava/lang/Object;)V
         2: .line 908
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.current:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         3: .line 909
            aload 0 /* this */
            iconst_m1
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.currentIndex:I
         4: .line 910
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.nextIndex:I
         5: .line 911
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$TreeListIterator.expectedModCount:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList$TreeListIterator.expectedModCount:I
         6: .line 912
            return
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.commons.collections.list.TreeList$TreeListIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/collections/list/TreeList$TreeListIterator;
            0    7     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   
}
SourceFile: "TreeList.java"
NestHost: org.apache.commons.collections.list.TreeList
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