public class org.apache.commons.collections.list.CursorableLinkedList extends org.apache.commons.collections.list.AbstractLinkedList implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.collections.list.CursorableLinkedList
  super_class: org.apache.commons.collections.list.AbstractLinkedList
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8836393098519411393

  protected transient java.util.List cursors;
    descriptor: Ljava/util/List;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
         0: .line 76
            aload 0 /* this */
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.<init>:()V
         1: .line 69
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.collections.list.CursorableLinkedList.cursors:Ljava/util/List;
         2: .line 77
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.init:()V
         3: .line 78
            return
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections/list/CursorableLinkedList;

  public void <init>(java.util.Collection);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // java.util.Collection coll
         0: .line 86
            aload 0 /* this */
            aload 1 /* coll */
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.<init>:(Ljava/util/Collection;)V
         1: .line 69
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.collections.list.CursorableLinkedList.cursors:Ljava/util/List;
         2: .line 87
            return
        end local 1 // java.util.Collection coll
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0    3     1  coll  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      coll  

  protected void init();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
         0: .line 94
            aload 0 /* this */
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.init:()V
         1: .line 95
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.collections.list.CursorableLinkedList.cursors:Ljava/util/List;
         2: .line 96
            return
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/CursorableLinkedList;

  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.CursorableLinkedList this
         0: .line 109
            aload 0 /* this */
            iconst_0
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.listIterator:(I)Ljava/util/ListIterator;
            areturn
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/list/CursorableLinkedList;

  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.CursorableLinkedList this
         0: .line 128
            aload 0 /* this */
            iconst_0
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.cursor:(I)Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
            areturn
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/list/CursorableLinkedList;

  public java.util.ListIterator listIterator(int);
    descriptor: (I)Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // int fromIndex
         0: .line 148
            aload 0 /* this */
            iload 1 /* fromIndex */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.cursor:(I)Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
            areturn
        end local 1 // int fromIndex
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0    1     1  fromIndex  I
    MethodParameters:
           Name  Flags
      fromIndex  

  public org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor();
    descriptor: ()Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
         0: .line 175
            aload 0 /* this */
            iconst_0
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.cursor:(I)Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
            areturn
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/list/CursorableLinkedList;

  public org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor(int);
    descriptor: (I)Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // int fromIndex
         0: .line 206
            new org.apache.commons.collections.list.CursorableLinkedList$Cursor
            dup
            aload 0 /* this */
            iload 1 /* fromIndex */
            invokespecial org.apache.commons.collections.list.CursorableLinkedList$Cursor.<init>:(Lorg/apache/commons/collections/list/CursorableLinkedList;I)V
            astore 2 /* cursor */
        start local 2 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
         1: .line 207
            aload 0 /* this */
            aload 2 /* cursor */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.registerCursor:(Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;)V
         2: .line 208
            aload 2 /* cursor */
            areturn
        end local 2 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
        end local 1 // int fromIndex
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0    3     1  fromIndex  I
            1    3     2     cursor  Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
    MethodParameters:
           Name  Flags
      fromIndex  

  protected void updateNode(org.apache.commons.collections.list.AbstractLinkedList$Node, java.lang.Object);
    descriptor: (Lorg/apache/commons/collections/list/AbstractLinkedList$Node;Ljava/lang/Object;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
        start local 2 // java.lang.Object value
         0: .line 221
            aload 0 /* this */
            aload 1 /* node */
            aload 2 /* value */
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.updateNode:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;Ljava/lang/Object;)V
         1: .line 222
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.broadcastNodeChanged:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
         2: .line 223
            return
        end local 2 // java.lang.Object value
        end local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0    3     1   node  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            0    3     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      node   
      value  

  protected void addNode(org.apache.commons.collections.list.AbstractLinkedList$Node, org.apache.commons.collections.list.AbstractLinkedList$Node);
    descriptor: (Lorg/apache/commons/collections/list/AbstractLinkedList$Node;Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node nodeToInsert
        start local 2 // org.apache.commons.collections.list.AbstractLinkedList$Node insertBeforeNode
         0: .line 233
            aload 0 /* this */
            aload 1 /* nodeToInsert */
            aload 2 /* insertBeforeNode */
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.addNode:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
         1: .line 234
            aload 0 /* this */
            aload 1 /* nodeToInsert */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.broadcastNodeInserted:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
         2: .line 235
            return
        end local 2 // org.apache.commons.collections.list.AbstractLinkedList$Node insertBeforeNode
        end local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node nodeToInsert
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    3     0              this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0    3     1      nodeToInsert  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            0    3     2  insertBeforeNode  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
    MethodParameters:
                  Name  Flags
      nodeToInsert      
      insertBeforeNode  

  protected void removeNode(org.apache.commons.collections.list.AbstractLinkedList$Node);
    descriptor: (Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
         0: .line 244
            aload 0 /* this */
            aload 1 /* node */
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.removeNode:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
         1: .line 245
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.broadcastNodeRemoved:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
         2: .line 246
            return
        end local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0    3     1  node  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
    MethodParameters:
      Name  Flags
      node  

  protected void removeAllNodes();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
         0: .line 252
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.size:()I
            ifle 6
         1: .line 254
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.iterator:()Ljava/util/Iterator;
            astore 1 /* it */
        start local 1 // java.util.Iterator it
         2: .line 255
            goto 5
         3: .line 256
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            pop
         4: .line 257
            aload 1 /* it */
            invokeinterface java.util.Iterator.remove:()V
         5: .line 255
      StackMap locals:
      StackMap stack:
            aload 1 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
        end local 1 // java.util.Iterator it
         6: .line 260
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            2    6     1    it  Ljava/util/Iterator;

  protected void registerCursor(org.apache.commons.collections.list.CursorableLinkedList$Cursor);
    descriptor: (Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
         0: .line 271
            aload 0 /* this */
            getfield org.apache.commons.collections.list.CursorableLinkedList.cursors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         1: goto 5
         2: .line 272
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.ref.WeakReference
            astore 3 /* ref */
        start local 3 // java.lang.ref.WeakReference ref
         3: .line 273
            aload 3 /* ref */
            invokevirtual java.lang.ref.WeakReference.get:()Ljava/lang/Object;
            ifnonnull 5
         4: .line 274
            aload 2 /* it */
            invokeinterface java.util.Iterator.remove:()V
        end local 3 // java.lang.ref.WeakReference ref
         5: .line 271
      StackMap locals:
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
        end local 2 // java.util.Iterator it
         6: .line 277
            aload 0 /* this */
            getfield org.apache.commons.collections.list.CursorableLinkedList.cursors:Ljava/util/List;
            new java.lang.ref.WeakReference
            dup
            aload 1 /* cursor */
            invokespecial java.lang.ref.WeakReference.<init>:(Ljava/lang/Object;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         7: .line 278
            return
        end local 1 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0    8     1  cursor  Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
            1    6     2      it  Ljava/util/Iterator;
            3    5     3     ref  Ljava/lang/ref/WeakReference;
    MethodParameters:
        Name  Flags
      cursor  

  protected void unregisterCursor(org.apache.commons.collections.list.CursorableLinkedList$Cursor);
    descriptor: (Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
         0: .line 286
            aload 0 /* this */
            getfield org.apache.commons.collections.list.CursorableLinkedList.cursors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         1: goto 11
         2: .line 287
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.ref.WeakReference
            astore 3 /* ref */
        start local 3 // java.lang.ref.WeakReference ref
         3: .line 288
            aload 3 /* ref */
            invokevirtual java.lang.ref.WeakReference.get:()Ljava/lang/Object;
            checkcast org.apache.commons.collections.list.CursorableLinkedList$Cursor
            astore 4 /* cur */
        start local 4 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cur
         4: .line 289
            aload 4 /* cur */
            ifnonnull 7
         5: .line 293
            aload 2 /* it */
            invokeinterface java.util.Iterator.remove:()V
         6: .line 295
            goto 11
      StackMap locals: java.lang.ref.WeakReference org.apache.commons.collections.list.CursorableLinkedList$Cursor
      StackMap stack:
         7: aload 4 /* cur */
            aload 1 /* cursor */
            if_acmpne 11
         8: .line 296
            aload 3 /* ref */
            invokevirtual java.lang.ref.WeakReference.clear:()V
         9: .line 297
            aload 2 /* it */
            invokeinterface java.util.Iterator.remove:()V
        10: .line 298
            goto 12
        end local 4 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cur
        end local 3 // java.lang.ref.WeakReference ref
        11: .line 286
      StackMap locals:
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
        end local 2 // java.util.Iterator it
        12: .line 301
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0   13     1  cursor  Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
            1   12     2      it  Ljava/util/Iterator;
            3   11     3     ref  Ljava/lang/ref/WeakReference;
            4   11     4     cur  Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
    MethodParameters:
        Name  Flags
      cursor  

  protected void broadcastNodeChanged(org.apache.commons.collections.list.AbstractLinkedList$Node);
    descriptor: (Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
         0: .line 311
            aload 0 /* this */
            getfield org.apache.commons.collections.list.CursorableLinkedList.cursors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         1: .line 312
            goto 8
         2: .line 313
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.ref.WeakReference
            astore 3 /* ref */
        start local 3 // java.lang.ref.WeakReference ref
         3: .line 314
            aload 3 /* ref */
            invokevirtual java.lang.ref.WeakReference.get:()Ljava/lang/Object;
            checkcast org.apache.commons.collections.list.CursorableLinkedList$Cursor
            astore 4 /* cursor */
        start local 4 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
         4: .line 315
            aload 4 /* cursor */
            ifnonnull 7
         5: .line 316
            aload 2 /* it */
            invokeinterface java.util.Iterator.remove:()V
         6: .line 317
            goto 8
         7: .line 318
      StackMap locals: java.lang.ref.WeakReference org.apache.commons.collections.list.CursorableLinkedList$Cursor
      StackMap stack:
            aload 4 /* cursor */
            aload 1 /* node */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList$Cursor.nodeChanged:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
        end local 4 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
        end local 3 // java.lang.ref.WeakReference ref
         8: .line 312
      StackMap locals:
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         9: .line 321
            return
        end local 2 // java.util.Iterator it
        end local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0   10     1    node  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            1   10     2      it  Ljava/util/Iterator;
            3    8     3     ref  Ljava/lang/ref/WeakReference;
            4    8     4  cursor  Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
    MethodParameters:
      Name  Flags
      node  

  protected void broadcastNodeRemoved(org.apache.commons.collections.list.AbstractLinkedList$Node);
    descriptor: (Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
         0: .line 330
            aload 0 /* this */
            getfield org.apache.commons.collections.list.CursorableLinkedList.cursors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         1: .line 331
            goto 8
         2: .line 332
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.ref.WeakReference
            astore 3 /* ref */
        start local 3 // java.lang.ref.WeakReference ref
         3: .line 333
            aload 3 /* ref */
            invokevirtual java.lang.ref.WeakReference.get:()Ljava/lang/Object;
            checkcast org.apache.commons.collections.list.CursorableLinkedList$Cursor
            astore 4 /* cursor */
        start local 4 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
         4: .line 334
            aload 4 /* cursor */
            ifnonnull 7
         5: .line 335
            aload 2 /* it */
            invokeinterface java.util.Iterator.remove:()V
         6: .line 336
            goto 8
         7: .line 337
      StackMap locals: java.lang.ref.WeakReference org.apache.commons.collections.list.CursorableLinkedList$Cursor
      StackMap stack:
            aload 4 /* cursor */
            aload 1 /* node */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList$Cursor.nodeRemoved:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
        end local 4 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
        end local 3 // java.lang.ref.WeakReference ref
         8: .line 331
      StackMap locals:
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         9: .line 340
            return
        end local 2 // java.util.Iterator it
        end local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0   10     1    node  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            1   10     2      it  Ljava/util/Iterator;
            3    8     3     ref  Ljava/lang/ref/WeakReference;
            4    8     4  cursor  Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
    MethodParameters:
      Name  Flags
      node  

  protected void broadcastNodeInserted(org.apache.commons.collections.list.AbstractLinkedList$Node);
    descriptor: (Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
         0: .line 349
            aload 0 /* this */
            getfield org.apache.commons.collections.list.CursorableLinkedList.cursors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         1: .line 350
            goto 8
         2: .line 351
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.ref.WeakReference
            astore 3 /* ref */
        start local 3 // java.lang.ref.WeakReference ref
         3: .line 352
            aload 3 /* ref */
            invokevirtual java.lang.ref.WeakReference.get:()Ljava/lang/Object;
            checkcast org.apache.commons.collections.list.CursorableLinkedList$Cursor
            astore 4 /* cursor */
        start local 4 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
         4: .line 353
            aload 4 /* cursor */
            ifnonnull 7
         5: .line 354
            aload 2 /* it */
            invokeinterface java.util.Iterator.remove:()V
         6: .line 355
            goto 8
         7: .line 356
      StackMap locals: java.lang.ref.WeakReference org.apache.commons.collections.list.CursorableLinkedList$Cursor
      StackMap stack:
            aload 4 /* cursor */
            aload 1 /* node */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList$Cursor.nodeInserted:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
        end local 4 // org.apache.commons.collections.list.CursorableLinkedList$Cursor cursor
        end local 3 // java.lang.ref.WeakReference ref
         8: .line 350
      StackMap locals:
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         9: .line 359
            return
        end local 2 // java.util.Iterator it
        end local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0   10     1    node  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            1   10     2      it  Ljava/util/Iterator;
            3    8     3     ref  Ljava/lang/ref/WeakReference;
            4    8     4  cursor  Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;
    MethodParameters:
      Name  Flags
      node  

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // java.io.ObjectOutputStream out
         0: .line 366
            aload 1 /* out */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         1: .line 367
            aload 0 /* this */
            aload 1 /* out */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.doWriteObject:(Ljava/io/ObjectOutputStream;)V
         2: .line 368
            return
        end local 1 // java.io.ObjectOutputStream out
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0    3     1   out  Ljava/io/ObjectOutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // java.io.ObjectInputStream in
         0: .line 374
            aload 1 /* in */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 375
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.doReadObject:(Ljava/io/ObjectInputStream;)V
         2: .line 376
            return
        end local 1 // java.io.ObjectInputStream in
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0    3     1    in  Ljava/io/ObjectInputStream;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    

  protected java.util.ListIterator createSubListListIterator(org.apache.commons.collections.list.AbstractLinkedList$LinkedSubList, int);
    descriptor: (Lorg/apache/commons/collections/list/AbstractLinkedList$LinkedSubList;I)Ljava/util/ListIterator;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.apache.commons.collections.list.CursorableLinkedList this
        start local 1 // org.apache.commons.collections.list.AbstractLinkedList$LinkedSubList subList
        start local 2 // int fromIndex
         0: .line 386
            new org.apache.commons.collections.list.CursorableLinkedList$SubCursor
            dup
            aload 1 /* subList */
            iload 2 /* fromIndex */
            invokespecial org.apache.commons.collections.list.CursorableLinkedList$SubCursor.<init>:(Lorg/apache/commons/collections/list/AbstractLinkedList$LinkedSubList;I)V
            astore 3 /* cursor */
        start local 3 // org.apache.commons.collections.list.CursorableLinkedList$SubCursor cursor
         1: .line 387
            aload 0 /* this */
            aload 3 /* cursor */
            invokevirtual org.apache.commons.collections.list.CursorableLinkedList.registerCursor:(Lorg/apache/commons/collections/list/CursorableLinkedList$Cursor;)V
         2: .line 388
            aload 3 /* cursor */
            areturn
        end local 3 // org.apache.commons.collections.list.CursorableLinkedList$SubCursor cursor
        end local 2 // int fromIndex
        end local 1 // org.apache.commons.collections.list.AbstractLinkedList$LinkedSubList subList
        end local 0 // org.apache.commons.collections.list.CursorableLinkedList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/apache/commons/collections/list/CursorableLinkedList;
            0    3     1    subList  Lorg/apache/commons/collections/list/AbstractLinkedList$LinkedSubList;
            0    3     2  fromIndex  I
            1    3     3     cursor  Lorg/apache/commons/collections/list/CursorableLinkedList$SubCursor;
    MethodParameters:
           Name  Flags
      subList    
      fromIndex  
}
SourceFile: "CursorableLinkedList.java"
NestMembers:
  org.apache.commons.collections.list.CursorableLinkedList$Cursor  org.apache.commons.collections.list.CursorableLinkedList$SubCursor
InnerClasses:
  protected LinkedSubList = org.apache.commons.collections.list.AbstractLinkedList$LinkedSubList of org.apache.commons.collections.list.AbstractLinkedList
  protected Node = org.apache.commons.collections.list.AbstractLinkedList$Node of org.apache.commons.collections.list.AbstractLinkedList
  public Cursor = org.apache.commons.collections.list.CursorableLinkedList$Cursor of org.apache.commons.collections.list.CursorableLinkedList
  protected SubCursor = org.apache.commons.collections.list.CursorableLinkedList$SubCursor of org.apache.commons.collections.list.CursorableLinkedList