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

  protected final java.util.List setOrder;
    descriptor: Ljava/util/List;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  public static org.apache.commons.collections.set.ListOrderedSet decorate(java.util.Set, java.util.List);
    descriptor: (Ljava/util/Set;Ljava/util/List;)Lorg/apache/commons/collections/set/ListOrderedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.util.Set set
        start local 1 // java.util.List list
         0: .line 73
            aload 0 /* set */
            ifnonnull 2
         1: .line 74
            new java.lang.IllegalArgumentException
            dup
            ldc "Set must not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 76
      StackMap locals:
      StackMap stack:
            aload 1 /* list */
            ifnonnull 4
         3: .line 77
            new java.lang.IllegalArgumentException
            dup
            ldc "List must not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* set */
            invokeinterface java.util.Set.size:()I
            ifgt 5
            aload 1 /* list */
            invokeinterface java.util.List.size:()I
            ifle 6
         5: .line 80
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Set and List must be empty"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 82
      StackMap locals:
      StackMap stack:
            new org.apache.commons.collections.set.ListOrderedSet
            dup
            aload 0 /* set */
            aload 1 /* list */
            invokespecial org.apache.commons.collections.set.ListOrderedSet.<init>:(Ljava/util/Set;Ljava/util/List;)V
            areturn
        end local 1 // java.util.List list
        end local 0 // java.util.Set set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0   set  Ljava/util/Set;
            0    7     1  list  Ljava/util/List;
    MethodParameters:
      Name  Flags
      set   
      list  

  public static org.apache.commons.collections.set.ListOrderedSet decorate(java.util.Set);
    descriptor: (Ljava/util/Set;)Lorg/apache/commons/collections/set/ListOrderedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.Set set
         0: .line 94
            new org.apache.commons.collections.set.ListOrderedSet
            dup
            aload 0 /* set */
            invokespecial org.apache.commons.collections.set.ListOrderedSet.<init>:(Ljava/util/Set;)V
            areturn
        end local 0 // java.util.Set set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   set  Ljava/util/Set;
    MethodParameters:
      Name  Flags
      set   

  public static org.apache.commons.collections.set.ListOrderedSet decorate(java.util.List);
    descriptor: (Ljava/util/List;)Lorg/apache/commons/collections/set/ListOrderedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.util.List list
         0: .line 109
            aload 0 /* list */
            ifnonnull 2
         1: .line 110
            new java.lang.IllegalArgumentException
            dup
            ldc "List must not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 112
      StackMap locals:
      StackMap stack:
            new java.util.HashSet
            dup
            aload 0 /* list */
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
            astore 1 /* set */
        start local 1 // java.util.Set set
         3: .line 113
            aload 0 /* list */
            aload 1 /* set */
            invokeinterface java.util.List.retainAll:(Ljava/util/Collection;)Z
            pop
         4: .line 115
            new org.apache.commons.collections.set.ListOrderedSet
            dup
            aload 1 /* set */
            aload 0 /* list */
            invokespecial org.apache.commons.collections.set.ListOrderedSet.<init>:(Ljava/util/Set;Ljava/util/List;)V
            areturn
        end local 1 // java.util.Set set
        end local 0 // java.util.List list
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  list  Ljava/util/List;
            3    5     1   set  Ljava/util/Set;
    MethodParameters:
      Name  Flags
      list  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
         0: .line 126
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            invokespecial org.apache.commons.collections.set.AbstractSerializableSetDecorator.<init>:(Ljava/util/Set;)V
         1: .line 127
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
         2: .line 128
            return
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/set/ListOrderedSet;

  protected void <init>(java.util.Set);
    descriptor: (Ljava/util/Set;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // java.util.Set set
         0: .line 137
            aload 0 /* this */
            aload 1 /* set */
            invokespecial org.apache.commons.collections.set.AbstractSerializableSetDecorator.<init>:(Ljava/util/Set;)V
         1: .line 138
            aload 0 /* this */
            new java.util.ArrayList
            dup
            aload 1 /* set */
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            putfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
         2: .line 139
            return
        end local 1 // java.util.Set set
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0    3     1   set  Ljava/util/Set;
    MethodParameters:
      Name  Flags
      set   

  protected void <init>(java.util.Set, java.util.List);
    descriptor: (Ljava/util/Set;Ljava/util/List;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // java.util.Set set
        start local 2 // java.util.List list
         0: .line 151
            aload 0 /* this */
            aload 1 /* set */
            invokespecial org.apache.commons.collections.set.AbstractSerializableSetDecorator.<init>:(Ljava/util/Set;)V
         1: .line 152
            aload 2 /* list */
            ifnonnull 3
         2: .line 153
            new java.lang.IllegalArgumentException
            dup
            ldc "List must not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 155
      StackMap locals: org.apache.commons.collections.set.ListOrderedSet java.util.Set java.util.List
      StackMap stack:
            aload 0 /* this */
            aload 2 /* list */
            putfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
         4: .line 156
            return
        end local 2 // java.util.List list
        end local 1 // java.util.Set set
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0    5     1   set  Ljava/util/Set;
            0    5     2  list  Ljava/util/List;
    MethodParameters:
      Name  Flags
      set   
      list  

  public java.util.List asList();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
         0: .line 165
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokestatic org.apache.commons.collections.list.UnmodifiableList.decorate:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/set/ListOrderedSet;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
         0: .line 170
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.collection:Ljava/util/Collection;
            invokeinterface java.util.Collection.clear:()V
         1: .line 171
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         2: .line 172
            return
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/set/ListOrderedSet;

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
         0: .line 175
            new org.apache.commons.collections.set.ListOrderedSet$OrderedSetIterator
            dup
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.collection:Ljava/util/Collection;
            invokespecial org.apache.commons.collections.set.ListOrderedSet$OrderedSetIterator.<init>:(Ljava/util/Iterator;Ljava/util/Collection;)V
            areturn
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/set/ListOrderedSet;

  public boolean add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // java.lang.Object object
         0: .line 179
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.collection:Ljava/util/Collection;
            aload 1 /* object */
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 181
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.collection:Ljava/util/Collection;
            aload 1 /* object */
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            ireturn
         2: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.collection:Ljava/util/Collection;
            aload 1 /* object */
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            istore 2 /* result */
        start local 2 // boolean result
         3: .line 185
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            aload 1 /* object */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 186
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0    5     1  object  Ljava/lang/Object;
            3    5     2  result  Z
    MethodParameters:
        Name  Flags
      object  

  public boolean addAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // java.util.Collection coll
         0: .line 191
            iconst_0
            istore 2 /* result */
        start local 2 // boolean result
         1: .line 192
            aload 1 /* coll */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         2: goto 5
         3: .line 193
      StackMap locals: int java.util.Iterator
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 4 /* object */
        start local 4 // java.lang.Object object
         4: .line 194
            iload 2 /* result */
            aload 0 /* this */
            aload 4 /* object */
            invokevirtual org.apache.commons.collections.set.ListOrderedSet.add:(Ljava/lang/Object;)Z
            ior
            istore 2 /* result */
        end local 4 // java.lang.Object object
         5: .line 192
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
        end local 3 // java.util.Iterator it
         6: .line 196
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // java.util.Collection coll
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0    7     1    coll  Ljava/util/Collection;
            1    7     2  result  Z
            2    6     3      it  Ljava/util/Iterator;
            4    5     4  object  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      coll  

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // java.lang.Object object
         0: .line 200
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.collection:Ljava/util/Collection;
            aload 1 /* object */
            invokeinterface java.util.Collection.remove:(Ljava/lang/Object;)Z
            istore 2 /* result */
        start local 2 // boolean result
         1: .line 201
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            aload 1 /* object */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            pop
         2: .line 202
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0    3     1  object  Ljava/lang/Object;
            1    3     2  result  Z
    MethodParameters:
        Name  Flags
      object  

  public boolean removeAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // java.util.Collection coll
         0: .line 206
            iconst_0
            istore 2 /* result */
        start local 2 // boolean result
         1: .line 207
            aload 1 /* coll */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         2: goto 5
         3: .line 208
      StackMap locals: int java.util.Iterator
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 4 /* object */
        start local 4 // java.lang.Object object
         4: .line 209
            iload 2 /* result */
            aload 0 /* this */
            aload 4 /* object */
            invokevirtual org.apache.commons.collections.set.ListOrderedSet.remove:(Ljava/lang/Object;)Z
            ior
            istore 2 /* result */
        end local 4 // java.lang.Object object
         5: .line 207
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
        end local 3 // java.util.Iterator it
         6: .line 211
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // java.util.Collection coll
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0    7     1    coll  Ljava/util/Collection;
            1    7     2  result  Z
            2    6     3      it  Ljava/util/Iterator;
            4    5     4  object  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      coll  

  public boolean retainAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // java.util.Collection coll
         0: .line 215
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.collection:Ljava/util/Collection;
            aload 1 /* coll */
            invokeinterface java.util.Collection.retainAll:(Ljava/util/Collection;)Z
            istore 2 /* result */
        start local 2 // boolean result
         1: .line 216
            iload 2 /* result */
            ifne 3
         2: .line 217
            iconst_0
            ireturn
         3: .line 218
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.collection:Ljava/util/Collection;
            invokeinterface java.util.Collection.size:()I
            ifne 6
         4: .line 219
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         5: .line 220
            goto 12
         6: .line 221
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         7: goto 11
         8: .line 222
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 4 /* object */
        start local 4 // java.lang.Object object
         9: .line 223
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.collection:Ljava/util/Collection;
            aload 4 /* object */
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ifne 11
        10: .line 224
            aload 3 /* it */
            invokeinterface java.util.Iterator.remove:()V
        end local 4 // java.lang.Object object
        11: .line 221
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        end local 3 // java.util.Iterator it
        12: .line 228
      StackMap locals:
      StackMap stack:
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // java.util.Collection coll
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0   13     1    coll  Ljava/util/Collection;
            1   13     2  result  Z
            7   12     3      it  Ljava/util/Iterator;
            9   11     4  object  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      coll  

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
         0: .line 232
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokeinterface java.util.List.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/set/ListOrderedSet;

  public java.lang.Object[] toArray(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // java.lang.Object[] a
         0: .line 236
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            aload 1 /* a */
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] a
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0    1     1     a  [Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      a     

  public java.lang.Object get(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // int index
         0: .line 241
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0    1     1  index  I
    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 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // java.lang.Object object
         0: .line 245
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            aload 1 /* object */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0    1     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public void add(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // int index
        start local 2 // java.lang.Object object
         0: .line 249
            aload 0 /* this */
            aload 2 /* object */
            invokevirtual org.apache.commons.collections.set.ListOrderedSet.contains:(Ljava/lang/Object;)Z
            ifne 3
         1: .line 250
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.collection:Ljava/util/Collection;
            aload 2 /* object */
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         2: .line 251
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* object */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         3: .line 253
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object object
        end local 1 // int index
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0    4     1   index  I
            0    4     2  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      index   
      object  

  public boolean addAll(int, java.util.Collection);
    descriptor: (ILjava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // int index
        start local 2 // java.util.Collection coll
         0: .line 256
            iconst_0
            istore 3 /* changed */
        start local 3 // boolean changed
         1: .line 257
            aload 2 /* coll */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4 /* it */
        start local 4 // java.util.Iterator it
         2: goto 9
         3: .line 258
      StackMap locals: int java.util.Iterator
      StackMap stack:
            aload 4 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 5 /* object */
        start local 5 // java.lang.Object object
         4: .line 259
            aload 0 /* this */
            aload 5 /* object */
            invokevirtual org.apache.commons.collections.set.ListOrderedSet.contains:(Ljava/lang/Object;)Z
            ifne 9
         5: .line 260
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.collection:Ljava/util/Collection;
            aload 5 /* object */
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         6: .line 261
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            iload 1 /* index */
            aload 5 /* object */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         7: .line 262
            iinc 1 /* index */ 1
         8: .line 263
            iconst_1
            istore 3 /* changed */
        end local 5 // java.lang.Object object
         9: .line 257
      StackMap locals:
      StackMap stack:
            aload 4 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
        end local 4 // java.util.Iterator it
        10: .line 266
            iload 3 /* changed */
            ireturn
        end local 3 // boolean changed
        end local 2 // java.util.Collection coll
        end local 1 // int index
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0   11     1    index  I
            0   11     2     coll  Ljava/util/Collection;
            1   11     3  changed  Z
            2   10     4       it  Ljava/util/Iterator;
            4    9     5   object  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      index  
      coll   

  public java.lang.Object remove(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
        start local 1 // int index
         0: .line 270
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            astore 2 /* obj */
        start local 2 // java.lang.Object obj
         1: .line 271
            aload 0 /* this */
            aload 2 /* obj */
            invokevirtual org.apache.commons.collections.set.ListOrderedSet.remove:(Ljava/lang/Object;)Z
            pop
         2: .line 272
            aload 2 /* obj */
            areturn
        end local 2 // java.lang.Object obj
        end local 1 // int index
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/commons/collections/set/ListOrderedSet;
            0    3     1  index  I
            1    3     2    obj  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      index  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.set.ListOrderedSet this
         0: .line 282
            aload 0 /* this */
            getfield org.apache.commons.collections.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.commons.collections.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/set/ListOrderedSet;
}
SourceFile: "ListOrderedSet.java"
NestMembers:
  org.apache.commons.collections.set.ListOrderedSet$OrderedSetIterator
InnerClasses:
  OrderedSetIterator = org.apache.commons.collections.set.ListOrderedSet$OrderedSetIterator of org.apache.commons.collections.set.ListOrderedSet