public class com.sun.javafx.collections.ObservableListWrapper<E> extends javafx.collections.ModifiableObservableListBase<E> implements javafx.collections.ObservableList<E>, com.sun.javafx.collections.SortableList<E>, java.util.RandomAccess
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.javafx.collections.ObservableListWrapper
  super_class: javafx.collections.ModifiableObservableListBase
{
  private final java.util.List<E> backingList;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<TE;>;

  private final com.sun.javafx.collections.ElementObserver elementObserver;
    descriptor: Lcom/sun/javafx/collections/ElementObserver;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private com.sun.javafx.collections.SortHelper helper;
    descriptor: Lcom/sun/javafx/collections/SortHelper;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.util.List<E>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // java.util.List list
         0: .line 52
            aload 0 /* this */
            invokespecial javafx.collections.ModifiableObservableListBase.<init>:()V
         1: .line 53
            aload 0 /* this */
            aload 1 /* list */
            putfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
         2: .line 54
            aload 0 /* this */
            aconst_null
            putfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
         3: .line 55
            return
        end local 1 // java.util.List list
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0    4     1  list  Ljava/util/List<TE;>;
    Signature: (Ljava/util/List<TE;>;)V
    MethodParameters:
      Name  Flags
      list  

  public void <init>(java.util.List<E>, javafx.util.Callback<E, javafx.beans.Observable[]>);
    descriptor: (Ljava/util/List;Ljavafx/util/Callback;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // java.util.List list
        start local 2 // javafx.util.Callback extractor
         0: .line 57
            aload 0 /* this */
            invokespecial javafx.collections.ModifiableObservableListBase.<init>:()V
         1: .line 58
            aload 0 /* this */
            aload 1 /* list */
            putfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
         2: .line 59
            aload 0 /* this */
            new com.sun.javafx.collections.ElementObserver
            dup
            aload 2 /* extractor */
            new com.sun.javafx.collections.ObservableListWrapper$1
            dup
            aload 0 /* this */
            invokespecial com.sun.javafx.collections.ObservableListWrapper$1.<init>:(Lcom/sun/javafx/collections/ObservableListWrapper;)V
         3: .line 79
            aload 0 /* this */
            invokespecial com.sun.javafx.collections.ElementObserver.<init>:(Ljavafx/util/Callback;Ljavafx/util/Callback;Ljavafx/collections/ObservableListBase;)V
         4: .line 59
            putfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
         5: .line 80
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 3 /* sz */
        start local 3 // int sz
         6: .line 81
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 10
         8: .line 82
      StackMap locals: com.sun.javafx.collections.ObservableListWrapper java.util.List javafx.util.Callback int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            iload 4 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            invokevirtual com.sun.javafx.collections.ElementObserver.attachListener:(Ljava/lang/Object;)V
         9: .line 81
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            iload 3 /* sz */
            if_icmplt 8
        end local 4 // int i
        11: .line 84
            return
        end local 3 // int sz
        end local 2 // javafx.util.Callback extractor
        end local 1 // java.util.List list
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0   12     1       list  Ljava/util/List<TE;>;
            0   12     2  extractor  Ljavafx/util/Callback<TE;[Ljavafx/beans/Observable;>;
            6   12     3         sz  I
            7   11     4          i  I
    Signature: (Ljava/util/List<TE;>;Ljavafx/util/Callback<TE;[Ljavafx/beans/Observable;>;)V
    MethodParameters:
           Name  Flags
      list       
      extractor  

  public E get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // int index
         0: .line 89
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0    1     1  index  I
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
         0: .line 94
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;

  protected void doAdd(int, );
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 99
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
            ifnull 2
         1: .line 100
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
            aload 2 /* element */
            invokevirtual com.sun.javafx.collections.ElementObserver.attachListener:(Ljava/lang/Object;)V
         2: .line 101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* element */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         3: .line 102
            return
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0    4     1    index  I
            0    4     2  element  TE;
    Signature: (ITE;)V
    MethodParameters:
         Name  Flags
      index    
      element  

  protected E doSet(int, );
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 106
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* element */
            invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
            astore 3 /* removed */
        start local 3 // java.lang.Object removed
         1: .line 107
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
            ifnull 4
         2: .line 108
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
            aload 3 /* removed */
            invokevirtual com.sun.javafx.collections.ElementObserver.detachListener:(Ljava/lang/Object;)V
         3: .line 109
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
            aload 2 /* element */
            invokevirtual com.sun.javafx.collections.ElementObserver.attachListener:(Ljava/lang/Object;)V
         4: .line 111
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 3 /* removed */
            areturn
        end local 3 // java.lang.Object removed
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0    5     1    index  I
            0    5     2  element  TE;
            1    5     3  removed  TE;
    Signature: (ITE;)TE;
    MethodParameters:
         Name  Flags
      index    
      element  

  protected E doRemove();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // int index
         0: .line 116
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            astore 2 /* removed */
        start local 2 // java.lang.Object removed
         1: .line 117
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
            ifnull 3
         2: .line 118
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
            aload 2 /* removed */
            invokevirtual com.sun.javafx.collections.ElementObserver.detachListener:(Ljava/lang/Object;)V
         3: .line 119
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* removed */
            areturn
        end local 2 // java.lang.Object removed
        end local 1 // int index
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0    4     1    index  I
            1    4     2  removed  TE;
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // java.lang.Object o
         0: .line 124
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public int lastIndexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // java.lang.Object o
         0: .line 129
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.lastIndexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  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 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // java.lang.Object o
         0: .line 134
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // java.util.Collection c
         0: .line 139
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            aload 1 /* c */
            invokeinterface java.util.List.containsAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
         0: .line 144
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
            ifnull 7
         1: .line 145
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.size:()I
            istore 1 /* sz */
        start local 1 // int sz
         2: .line 146
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 6
         4: .line 147
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.elementObserver:Lcom/sun/javafx/collections/ElementObserver;
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.get:(I)Ljava/lang/Object;
            invokevirtual com.sun.javafx.collections.ElementObserver.detachListener:(Ljava/lang/Object;)V
         5: .line 146
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            iload 1 /* sz */
            if_icmplt 4
        end local 2 // int i
        end local 1 // int sz
         7: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.hasListeners:()Z
            ifeq 10
         8: .line 151
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.beginChange:()V
         9: .line 152
            aload 0 /* this */
            iconst_0
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.nextRemove:(ILjava/util/List;)V
        10: .line 154
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
        11: .line 155
            aload 0 /* this */
            dup
            getfield com.sun.javafx.collections.ObservableListWrapper.modCount:I
            iconst_1
            iadd
            putfield com.sun.javafx.collections.ObservableListWrapper.modCount:I
        12: .line 156
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.hasListeners:()Z
            ifeq 14
        13: .line 157
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.endChange:()V
        14: .line 159
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            2    7     1    sz  I
            3    7     2     i  I

  public void remove(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 163
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.beginChange:()V
         1: .line 164
            iload 1 /* fromIndex */
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 165
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* fromIndex */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.remove:(I)Ljava/lang/Object;
            pop
         4: .line 164
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            iload 2 /* toIndex */
            if_icmplt 3
        end local 3 // int i
         6: .line 167
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.endChange:()V
         7: .line 168
            return
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0    8     1  fromIndex  I
            0    8     2    toIndex  I
            2    6     3          i  I
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    

  public boolean removeAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // java.util.Collection c
         0: .line 172
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.beginChange:()V
         1: .line 173
            new java.util.BitSet
            dup
            aload 1 /* c */
            invokeinterface java.util.Collection.size:()I
            invokespecial java.util.BitSet.<init>:(I)V
            astore 2 /* bs */
        start local 2 // java.util.BitSet bs
         2: .line 174
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 7
         4: .line 175
      StackMap locals: java.util.BitSet int
      StackMap stack:
            aload 1 /* c */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.get:(I)Ljava/lang/Object;
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 176
            aload 2 /* bs */
            iload 3 /* i */
            invokevirtual java.util.BitSet.set:(I)V
         6: .line 174
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.size:()I
            if_icmplt 4
        end local 3 // int i
         8: .line 179
            aload 2 /* bs */
            invokevirtual java.util.BitSet.isEmpty:()Z
            ifne 13
         9: .line 180
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.size:()I
            istore 3 /* cur */
        start local 3 // int cur
        10: .line 181
            goto 12
        11: .line 182
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* cur */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.remove:(I)Ljava/lang/Object;
            pop
        12: .line 181
      StackMap locals:
      StackMap stack:
            aload 2 /* bs */
            iload 3 /* cur */
            iconst_1
            isub
            invokevirtual java.util.BitSet.previousSetBit:(I)I
            dup
            istore 3 /* cur */
            ifge 11
        end local 3 // int cur
        13: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.endChange:()V
        14: .line 186
            aload 2 /* bs */
            invokevirtual java.util.BitSet.isEmpty:()Z
            ifeq 15
            iconst_0
            goto 16
      StackMap locals:
      StackMap stack:
        15: iconst_1
      StackMap locals:
      StackMap stack: int
        16: ireturn
        end local 2 // java.util.BitSet bs
        end local 1 // java.util.Collection c
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0   17     1     c  Ljava/util/Collection<*>;
            2   17     2    bs  Ljava/util/BitSet;
            3    8     3     i  I
           10   13     3   cur  I
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean retainAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // java.util.Collection c
         0: .line 191
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.beginChange:()V
         1: .line 192
            new java.util.BitSet
            dup
            aload 1 /* c */
            invokeinterface java.util.Collection.size:()I
            invokespecial java.util.BitSet.<init>:(I)V
            astore 2 /* bs */
        start local 2 // java.util.BitSet bs
         2: .line 193
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 7
         4: .line 194
      StackMap locals: java.util.BitSet int
      StackMap stack:
            aload 1 /* c */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.get:(I)Ljava/lang/Object;
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ifne 6
         5: .line 195
            aload 2 /* bs */
            iload 3 /* i */
            invokevirtual java.util.BitSet.set:(I)V
         6: .line 193
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.size:()I
            if_icmplt 4
        end local 3 // int i
         8: .line 198
            aload 2 /* bs */
            invokevirtual java.util.BitSet.isEmpty:()Z
            ifne 13
         9: .line 199
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.size:()I
            istore 3 /* cur */
        start local 3 // int cur
        10: .line 200
            goto 12
        11: .line 201
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* cur */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.remove:(I)Ljava/lang/Object;
            pop
        12: .line 200
      StackMap locals:
      StackMap stack:
            aload 2 /* bs */
            iload 3 /* cur */
            iconst_1
            isub
            invokevirtual java.util.BitSet.previousSetBit:(I)I
            dup
            istore 3 /* cur */
            ifge 11
        end local 3 // int cur
        13: .line 204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.endChange:()V
        14: .line 205
            aload 2 /* bs */
            invokevirtual java.util.BitSet.isEmpty:()Z
            ifeq 15
            iconst_0
            goto 16
      StackMap locals:
      StackMap stack:
        15: iconst_1
      StackMap locals:
      StackMap stack: int
        16: ireturn
        end local 2 // java.util.BitSet bs
        end local 1 // java.util.Collection c
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0   17     1     c  Ljava/util/Collection<*>;
            2   17     2    bs  Ljava/util/BitSet;
            3    8     3     i  I
           10   13     3   cur  I
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public void sort();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=1
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
         0: .line 213
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 2
         1: .line 214
            return
         2: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.getSortHelper:()Lcom/sun/javafx/collections/SortHelper;
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            invokevirtual com.sun.javafx.collections.SortHelper.sort:(Ljava/util/List;)[I
            astore 1 /* perm */
        start local 1 // int[] perm
         3: .line 217
            aload 0 /* this */
            new com.sun.javafx.collections.NonIterableChange$SimplePermutationChange
            dup
            iconst_0
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.size:()I
            aload 1 /* perm */
            aload 0 /* this */
            invokespecial com.sun.javafx.collections.NonIterableChange$SimplePermutationChange.<init>:(II[ILjavafx/collections/ObservableList;)V
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.fireChange:(Ljavafx/collections/ListChangeListener$Change;)V
         4: .line 218
            return
        end local 1 // int[] perm
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            3    5     1  perm  [I

  public void sort(java.util.Comparator<? super E>);
    descriptor: (Ljava/util/Comparator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
        start local 1 // java.util.Comparator comparator
         0: .line 222
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 2
         1: .line 223
            return
         2: .line 225
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.getSortHelper:()Lcom/sun/javafx/collections/SortHelper;
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.backingList:Ljava/util/List;
            aload 1 /* comparator */
            invokevirtual com.sun.javafx.collections.SortHelper.sort:(Ljava/util/List;Ljava/util/Comparator;)[I
            astore 2 /* perm */
        start local 2 // int[] perm
         3: .line 226
            aload 0 /* this */
            new com.sun.javafx.collections.NonIterableChange$SimplePermutationChange
            dup
            iconst_0
            aload 0 /* this */
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.size:()I
            aload 2 /* perm */
            aload 0 /* this */
            invokespecial com.sun.javafx.collections.NonIterableChange$SimplePermutationChange.<init>:(II[ILjavafx/collections/ObservableList;)V
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.fireChange:(Ljavafx/collections/ListChangeListener$Change;)V
         4: .line 227
            return
        end local 2 // int[] perm
        end local 1 // java.util.Comparator comparator
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;
            0    5     1  comparator  Ljava/util/Comparator<-TE;>;
            3    5     2        perm  [I
    Signature: (Ljava/util/Comparator<-TE;>;)V
    MethodParameters:
            Name  Flags
      comparator  

  private com.sun.javafx.collections.SortHelper getSortHelper();
    descriptor: ()Lcom/sun/javafx/collections/SortHelper;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.javafx.collections.ObservableListWrapper this
         0: .line 230
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.helper:Lcom/sun/javafx/collections/SortHelper;
            ifnonnull 2
         1: .line 231
            aload 0 /* this */
            new com.sun.javafx.collections.SortHelper
            dup
            invokespecial com.sun.javafx.collections.SortHelper.<init>:()V
            putfield com.sun.javafx.collections.ObservableListWrapper.helper:Lcom/sun/javafx/collections/SortHelper;
         2: .line 233
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.javafx.collections.ObservableListWrapper.helper:Lcom/sun/javafx/collections/SortHelper;
            areturn
        end local 0 // com.sun.javafx.collections.ObservableListWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/javafx/collections/ObservableListWrapper<TE;>;

  static void access$0(com.sun.javafx.collections.ObservableListWrapper);
    descriptor: (Lcom/sun/javafx/collections/ObservableListWrapper;)V
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.beginChange:()V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static void access$1(com.sun.javafx.collections.ObservableListWrapper, int);
    descriptor: (Lcom/sun/javafx/collections/ObservableListWrapper;I)V
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.nextUpdate:(I)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static void access$2(com.sun.javafx.collections.ObservableListWrapper);
    descriptor: (Lcom/sun/javafx/collections/ObservableListWrapper;)V
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.sun.javafx.collections.ObservableListWrapper.endChange:()V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <E:Ljava/lang/Object;>Ljavafx/collections/ModifiableObservableListBase<TE;>;Ljavafx/collections/ObservableList<TE;>;Lcom/sun/javafx/collections/SortableList<TE;>;Ljava/util/RandomAccess;
SourceFile: "ObservableListWrapper.java"
NestMembers:
  com.sun.javafx.collections.ObservableListWrapper$1  com.sun.javafx.collections.ObservableListWrapper$1$1
InnerClasses:
  public SimplePermutationChange = com.sun.javafx.collections.NonIterableChange$SimplePermutationChange of com.sun.javafx.collections.NonIterableChange
  com.sun.javafx.collections.ObservableListWrapper$1
  public abstract Change = javafx.collections.ListChangeListener$Change of javafx.collections.ListChangeListener