public class javax.swing.DefaultListSelectionModel implements javax.swing.ListSelectionModel, java.lang.Cloneable, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.swing.DefaultListSelectionModel
  super_class: java.lang.Object
{
  private static final int MIN;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  private static final int MAX;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2147483647

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

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

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

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

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

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

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

  private boolean isAdjusting;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

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

  private java.util.BitSet value;
    descriptor: Ljava/util/BitSet;
    flags: (0x0002) ACC_PRIVATE

  protected javax.swing.event.EventListenerList listenerList;
    descriptor: Ljavax/swing/event/EventListenerList;
    flags: (0x0004) ACC_PROTECTED

  protected boolean leadAnchorNotificationEnabled;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 84
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 0 /* this */
            iconst_2
            putfield javax.swing.DefaultListSelectionModel.selectionMode:I
         2: .line 59
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.minIndex:I
         3: .line 60
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.maxIndex:I
         4: .line 61
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.anchorIndex:I
         5: .line 62
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.leadIndex:I
         6: .line 63
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.firstAdjustedIndex:I
         7: .line 64
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.lastAdjustedIndex:I
         8: .line 65
            aload 0 /* this */
            iconst_0
            putfield javax.swing.DefaultListSelectionModel.isAdjusting:Z
         9: .line 67
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.firstChangedIndex:I
        10: .line 68
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.lastChangedIndex:I
        11: .line 70
            aload 0 /* this */
            new java.util.BitSet
            dup
            bipush 32
            invokespecial java.util.BitSet.<init>:(I)V
            putfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
        12: .line 74
            aload 0 /* this */
            new javax.swing.event.EventListenerList
            dup
            invokespecial javax.swing.event.EventListenerList.<init>:()V
            putfield javax.swing.DefaultListSelectionModel.listenerList:Ljavax/swing/event/EventListenerList;
        13: .line 79
            aload 0 /* this */
            iconst_1
            putfield javax.swing.DefaultListSelectionModel.leadAnchorNotificationEnabled:Z
        14: .line 84
            return
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Ljavax/swing/DefaultListSelectionModel;

  public int getMinSelectionIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 87
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.isSelectionEmpty:()Z
            ifeq 1
            iconst_m1
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/swing/DefaultListSelectionModel;

  public int getMaxSelectionIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 90
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            ireturn
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/DefaultListSelectionModel;

  public boolean getValueIsAdjusting();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 93
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.isAdjusting:Z
            ireturn
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/DefaultListSelectionModel;

  public int getSelectionMode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 96
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.selectionMode:I
            ireturn
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/DefaultListSelectionModel;

  public void setSelectionMode(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int selectionMode
         0: .line 103
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.selectionMode:I
            istore 2 /* oldMode */
        start local 2 // int oldMode
         1: .line 104
            iload 1 /* selectionMode */
            tableswitch { // 0 - 2
                    0: 2
                    1: 2
                    2: 2
              default: 4
          }
         2: .line 108
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* selectionMode */
            putfield javax.swing.DefaultListSelectionModel.selectionMode:I
         3: .line 109
            goto 5
         4: .line 111
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid selectionMode"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 120
      StackMap locals:
      StackMap stack:
            iload 2 /* oldMode */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.selectionMode:I
            if_icmple 17
         6: .line 121
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.selectionMode:I
            ifne 10
         7: .line 122
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.isSelectionEmpty:()Z
            ifne 17
         8: .line 123
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            invokevirtual javax.swing.DefaultListSelectionModel.setSelectionInterval:(II)V
         9: .line 125
            goto 17
      StackMap locals:
      StackMap stack:
        10: aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.selectionMode:I
            iconst_1
            if_icmpne 17
        11: .line 126
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.isSelectionEmpty:()Z
            ifne 17
        12: .line 127
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            istore 3 /* selectionEndindex */
        start local 3 // int selectionEndindex
        13: .line 128
            goto 15
        14: .line 129
      StackMap locals: int
      StackMap stack:
            iinc 3 /* selectionEndindex */ 1
        15: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            iload 3 /* selectionEndindex */
            iconst_1
            iadd
            invokevirtual java.util.BitSet.get:(I)Z
            ifne 14
        16: .line 131
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            iload 3 /* selectionEndindex */
            invokevirtual javax.swing.DefaultListSelectionModel.setSelectionInterval:(II)V
        end local 3 // int selectionEndindex
        17: .line 135
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int oldMode
        end local 1 // int selectionMode
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   18     0               this  Ljavax/swing/DefaultListSelectionModel;
            0   18     1      selectionMode  I
            1   18     2            oldMode  I
           13   17     3  selectionEndindex  I
    MethodParameters:
               Name  Flags
      selectionMode  

  public boolean isSelectedIndex(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int index
         0: .line 139
            iload 1 /* index */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            if_icmplt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            if_icmple 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            iload 1 /* index */
            invokevirtual java.util.BitSet.get:(I)Z
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 1 // int index
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljavax/swing/DefaultListSelectionModel;
            0    4     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public boolean isSelectionEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 144
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            if_icmple 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/DefaultListSelectionModel;

  public void addListSelectionListener(javax.swing.event.ListSelectionListener);
    descriptor: (Ljavax/swing/event/ListSelectionListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // javax.swing.event.ListSelectionListener l
         0: .line 149
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.listenerList:Ljavax/swing/event/EventListenerList;
            ldc Ljavax/swing/event/ListSelectionListener;
            aload 1 /* l */
            invokevirtual javax.swing.event.EventListenerList.add:(Ljava/lang/Class;Ljava/util/EventListener;)V
         1: .line 150
            return
        end local 1 // javax.swing.event.ListSelectionListener l
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/DefaultListSelectionModel;
            0    2     1     l  Ljavax/swing/event/ListSelectionListener;
    MethodParameters:
      Name  Flags
      l     

  public void removeListSelectionListener(javax.swing.event.ListSelectionListener);
    descriptor: (Ljavax/swing/event/ListSelectionListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // javax.swing.event.ListSelectionListener l
         0: .line 154
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.listenerList:Ljavax/swing/event/EventListenerList;
            ldc Ljavax/swing/event/ListSelectionListener;
            aload 1 /* l */
            invokevirtual javax.swing.event.EventListenerList.remove:(Ljava/lang/Class;Ljava/util/EventListener;)V
         1: .line 155
            return
        end local 1 // javax.swing.event.ListSelectionListener l
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/DefaultListSelectionModel;
            0    2     1     l  Ljavax/swing/event/ListSelectionListener;
    MethodParameters:
      Name  Flags
      l     

  public javax.swing.event.ListSelectionListener[] getListSelectionListeners();
    descriptor: ()[Ljavax/swing/event/ListSelectionListener;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 171
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.listenerList:Ljavax/swing/event/EventListenerList;
            ldc Ljavax/swing/event/ListSelectionListener;
            invokevirtual javax.swing.event.EventListenerList.getListeners:(Ljava/lang/Class;)[Ljava/util/EventListener;
            checkcast javax.swing.event.ListSelectionListener[]
            areturn
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/DefaultListSelectionModel;

  protected void fireValueChanged(boolean);
    descriptor: (Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // boolean isAdjusting
         0: .line 180
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.lastChangedIndex:I
            iconst_m1
            if_icmpne 2
         1: .line 181
            return
         2: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.firstChangedIndex:I
            istore 2 /* oldFirstChangedIndex */
        start local 2 // int oldFirstChangedIndex
         3: .line 188
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.lastChangedIndex:I
            istore 3 /* oldLastChangedIndex */
        start local 3 // int oldLastChangedIndex
         4: .line 189
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.firstChangedIndex:I
         5: .line 190
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.lastChangedIndex:I
         6: .line 191
            aload 0 /* this */
            iload 2 /* oldFirstChangedIndex */
            iload 3 /* oldLastChangedIndex */
            iload 1 /* isAdjusting */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:(IIZ)V
         7: .line 192
            return
        end local 3 // int oldLastChangedIndex
        end local 2 // int oldFirstChangedIndex
        end local 1 // boolean isAdjusting
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    8     0                  this  Ljavax/swing/DefaultListSelectionModel;
            0    8     1           isAdjusting  Z
            3    8     2  oldFirstChangedIndex  I
            4    8     3   oldLastChangedIndex  I
    MethodParameters:
             Name  Flags
      isAdjusting  

  protected void fireValueChanged(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int firstIndex
        start local 2 // int lastIndex
         0: .line 204
            aload 0 /* this */
            iload 1 /* firstIndex */
            iload 2 /* lastIndex */
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getValueIsAdjusting:()Z
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:(IIZ)V
         1: .line 205
            return
        end local 2 // int lastIndex
        end local 1 // int firstIndex
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Ljavax/swing/DefaultListSelectionModel;
            0    2     1  firstIndex  I
            0    2     2   lastIndex  I
    MethodParameters:
            Name  Flags
      firstIndex  
      lastIndex   

  protected void fireValueChanged(int, int, boolean);
    descriptor: (IIZ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=7, args_size=4
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int firstIndex
        start local 2 // int lastIndex
        start local 3 // boolean isAdjusting
         0: .line 216
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.listenerList:Ljavax/swing/event/EventListenerList;
            invokevirtual javax.swing.event.EventListenerList.getListenerList:()[Ljava/lang/Object;
            astore 4 /* listeners */
        start local 4 // java.lang.Object[] listeners
         1: .line 217
            aconst_null
            astore 5 /* e */
        start local 5 // javax.swing.event.ListSelectionEvent e
         2: .line 219
            aload 4 /* listeners */
            arraylength
            iconst_2
            isub
            istore 6 /* i */
        start local 6 // int i
         3: goto 9
         4: .line 220
      StackMap locals: java.lang.Object[] javax.swing.event.ListSelectionEvent int
      StackMap stack:
            aload 4 /* listeners */
            iload 6 /* i */
            aaload
            ldc Ljavax/swing/event/ListSelectionListener;
            if_acmpne 8
         5: .line 221
            aload 5 /* e */
            ifnonnull 7
         6: .line 222
            new javax.swing.event.ListSelectionEvent
            dup
            aload 0 /* this */
            iload 1 /* firstIndex */
            iload 2 /* lastIndex */
            iload 3 /* isAdjusting */
            invokespecial javax.swing.event.ListSelectionEvent.<init>:(Ljava/lang/Object;IIZ)V
            astore 5 /* e */
         7: .line 224
      StackMap locals:
      StackMap stack:
            aload 4 /* listeners */
            iload 6 /* i */
            iconst_1
            iadd
            aaload
            checkcast javax.swing.event.ListSelectionListener
            aload 5 /* e */
            invokeinterface javax.swing.event.ListSelectionListener.valueChanged:(Ljavax/swing/event/ListSelectionEvent;)V
         8: .line 219
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ -2
      StackMap locals:
      StackMap stack:
         9: iload 6 /* i */
            ifge 4
        end local 6 // int i
        10: .line 227
            return
        end local 5 // javax.swing.event.ListSelectionEvent e
        end local 4 // java.lang.Object[] listeners
        end local 3 // boolean isAdjusting
        end local 2 // int lastIndex
        end local 1 // int firstIndex
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Ljavax/swing/DefaultListSelectionModel;
            0   11     1   firstIndex  I
            0   11     2    lastIndex  I
            0   11     3  isAdjusting  Z
            1   11     4    listeners  [Ljava/lang/Object;
            2   11     5            e  Ljavax/swing/event/ListSelectionEvent;
            3   10     6            i  I
    MethodParameters:
             Name  Flags
      firstIndex   
      lastIndex    
      isAdjusting  

  private void fireValueChanged();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 230
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.lastAdjustedIndex:I
            iconst_m1
            if_icmpne 2
         1: .line 231
            return
         2: .line 238
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getValueIsAdjusting:()Z
            ifeq 5
         3: .line 239
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.firstChangedIndex:I
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.firstAdjustedIndex:I
            invokestatic java.lang.Math.min:(II)I
            putfield javax.swing.DefaultListSelectionModel.firstChangedIndex:I
         4: .line 240
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.lastChangedIndex:I
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.lastAdjustedIndex:I
            invokestatic java.lang.Math.max:(II)I
            putfield javax.swing.DefaultListSelectionModel.lastChangedIndex:I
         5: .line 246
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.firstAdjustedIndex:I
            istore 1 /* oldFirstAdjustedIndex */
        start local 1 // int oldFirstAdjustedIndex
         6: .line 247
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.lastAdjustedIndex:I
            istore 2 /* oldLastAdjustedIndex */
        start local 2 // int oldLastAdjustedIndex
         7: .line 248
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.firstAdjustedIndex:I
         8: .line 249
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.lastAdjustedIndex:I
         9: .line 251
            aload 0 /* this */
            iload 1 /* oldFirstAdjustedIndex */
            iload 2 /* oldLastAdjustedIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:(II)V
        10: .line 252
            return
        end local 2 // int oldLastAdjustedIndex
        end local 1 // int oldFirstAdjustedIndex
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   11     0                   this  Ljavax/swing/DefaultListSelectionModel;
            6   11     1  oldFirstAdjustedIndex  I
            7   11     2   oldLastAdjustedIndex  I

  public <T extends java.util.EventListener> T[] getListeners(java.lang.Class<T>);
    descriptor: (Ljava/lang/Class;)[Ljava/util/EventListener;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // java.lang.Class listenerType
         0: .line 291
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.listenerList:Ljavax/swing/event/EventListenerList;
            aload 1 /* listenerType */
            invokevirtual javax.swing.event.EventListenerList.getListeners:(Ljava/lang/Class;)[Ljava/util/EventListener;
            areturn
        end local 1 // java.lang.Class listenerType
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Ljavax/swing/DefaultListSelectionModel;
            0    1     1  listenerType  Ljava/lang/Class<TT;>;
    Signature: <T::Ljava/util/EventListener;>(Ljava/lang/Class<TT;>;)[TT;
    MethodParameters:
              Name  Flags
      listenerType  

  private void markAsDirty(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int r
         0: .line 296
            iload 1 /* r */
            iconst_m1
            if_icmpne 2
         1: .line 297
            return
         2: .line 300
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.firstAdjustedIndex:I
            iload 1 /* r */
            invokestatic java.lang.Math.min:(II)I
            putfield javax.swing.DefaultListSelectionModel.firstAdjustedIndex:I
         3: .line 301
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.lastAdjustedIndex:I
            iload 1 /* r */
            invokestatic java.lang.Math.max:(II)I
            putfield javax.swing.DefaultListSelectionModel.lastAdjustedIndex:I
         4: .line 302
            return
        end local 1 // int r
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/DefaultListSelectionModel;
            0    5     1     r  I
    MethodParameters:
      Name  Flags
      r     

  private void set(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int r
         0: .line 306
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            iload 1 /* r */
            invokevirtual java.util.BitSet.get:(I)Z
            ifeq 2
         1: .line 307
            return
         2: .line 309
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            iload 1 /* r */
            invokevirtual java.util.BitSet.set:(I)V
         3: .line 310
            aload 0 /* this */
            iload 1 /* r */
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         4: .line 313
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            iload 1 /* r */
            invokestatic java.lang.Math.min:(II)I
            putfield javax.swing.DefaultListSelectionModel.minIndex:I
         5: .line 314
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            iload 1 /* r */
            invokestatic java.lang.Math.max:(II)I
            putfield javax.swing.DefaultListSelectionModel.maxIndex:I
         6: .line 315
            return
        end local 1 // int r
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljavax/swing/DefaultListSelectionModel;
            0    7     1     r  I
    MethodParameters:
      Name  Flags
      r     

  private void clear(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int r
         0: .line 319
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            iload 1 /* r */
            invokevirtual java.util.BitSet.get:(I)Z
            ifne 2
         1: .line 320
            return
         2: .line 322
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            iload 1 /* r */
            invokevirtual java.util.BitSet.clear:(I)V
         3: .line 323
            aload 0 /* this */
            iload 1 /* r */
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         4: .line 332
            iload 1 /* r */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            if_icmpne 10
         5: .line 333
            aload 0 /* this */
            dup
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            iconst_1
            iadd
            putfield javax.swing.DefaultListSelectionModel.minIndex:I
            goto 9
         6: .line 334
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            invokevirtual java.util.BitSet.get:(I)Z
            ifeq 8
         7: .line 335
            goto 10
         8: .line 333
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            iconst_1
            iadd
            putfield javax.swing.DefaultListSelectionModel.minIndex:I
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            if_icmple 6
        10: .line 345
      StackMap locals:
      StackMap stack:
            iload 1 /* r */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            if_icmpne 16
        11: .line 346
            aload 0 /* this */
            dup
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            iconst_1
            isub
            putfield javax.swing.DefaultListSelectionModel.maxIndex:I
            goto 15
        12: .line 347
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            invokevirtual java.util.BitSet.get:(I)Z
            ifeq 14
        13: .line 348
            goto 16
        14: .line 346
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            iconst_1
            isub
            putfield javax.swing.DefaultListSelectionModel.maxIndex:I
      StackMap locals:
      StackMap stack:
        15: aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            if_icmple 12
        16: .line 367
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.isSelectionEmpty:()Z
            ifeq 19
        17: .line 368
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.minIndex:I
        18: .line 369
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.maxIndex:I
        19: .line 371
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int r
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Ljavax/swing/DefaultListSelectionModel;
            0   20     1     r  I
    MethodParameters:
      Name  Flags
      r     

  public void setLeadAnchorNotificationEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // boolean flag
         0: .line 380
            aload 0 /* this */
            iload 1 /* flag */
            putfield javax.swing.DefaultListSelectionModel.leadAnchorNotificationEnabled:Z
         1: .line 381
            return
        end local 1 // boolean flag
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/DefaultListSelectionModel;
            0    2     1  flag  Z
    MethodParameters:
      Name  Flags
      flag  

  public boolean isLeadAnchorNotificationEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 402
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadAnchorNotificationEnabled:Z
            ireturn
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/DefaultListSelectionModel;

  private void updateLeadAnchorIndices(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int anchorIndex
        start local 2 // int leadIndex
         0: .line 406
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadAnchorNotificationEnabled:Z
            ifeq 7
         1: .line 407
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            iload 1 /* anchorIndex */
            if_icmpeq 4
         2: .line 408
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         3: .line 409
            aload 0 /* this */
            iload 1 /* anchorIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         4: .line 412
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            iload 2 /* leadIndex */
            if_icmpeq 7
         5: .line 413
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         6: .line 414
            aload 0 /* this */
            iload 2 /* leadIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         7: .line 417
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* anchorIndex */
            putfield javax.swing.DefaultListSelectionModel.anchorIndex:I
         8: .line 418
            aload 0 /* this */
            iload 2 /* leadIndex */
            putfield javax.swing.DefaultListSelectionModel.leadIndex:I
         9: .line 419
            return
        end local 2 // int leadIndex
        end local 1 // int anchorIndex
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Ljavax/swing/DefaultListSelectionModel;
            0   10     1  anchorIndex  I
            0   10     2    leadIndex  I
    MethodParameters:
             Name  Flags
      anchorIndex  
      leadIndex    

  private boolean contains(int, int, int);
    descriptor: (III)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int a
        start local 2 // int b
        start local 3 // int i
         0: .line 422
            iload 3 /* i */
            iload 1 /* a */
            if_icmplt 1
            iload 3 /* i */
            iload 2 /* b */
            if_icmpgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 3 // int i
        end local 2 // int b
        end local 1 // int a
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/DefaultListSelectionModel;
            0    2     1     a  I
            0    2     2     b  I
            0    2     3     i  I
    MethodParameters:
      Name  Flags
      a     
      b     
      i     

  private void changeSelection(int, int, int, int, boolean);
    descriptor: (IIIIZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=6
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int clearMin
        start local 2 // int clearMax
        start local 3 // int setMin
        start local 4 // int setMax
        start local 5 // boolean clearFirst
         0: .line 427
            iload 3 /* setMin */
            iload 1 /* clearMin */
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* i */
        start local 6 // int i
         1: goto 14
         2: .line 429
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* clearMin */
            iload 2 /* clearMax */
            iload 6 /* i */
            invokevirtual javax.swing.DefaultListSelectionModel.contains:(III)Z
            istore 7 /* shouldClear */
        start local 7 // boolean shouldClear
         3: .line 430
            aload 0 /* this */
            iload 3 /* setMin */
            iload 4 /* setMax */
            iload 6 /* i */
            invokevirtual javax.swing.DefaultListSelectionModel.contains:(III)Z
            istore 8 /* shouldSet */
        start local 8 // boolean shouldSet
         4: .line 432
            iload 8 /* shouldSet */
            ifeq 9
            iload 7 /* shouldClear */
            ifeq 9
         5: .line 433
            iload 5 /* clearFirst */
            ifeq 8
         6: .line 434
            iconst_0
            istore 7 /* shouldClear */
         7: .line 435
            goto 9
         8: .line 437
      StackMap locals: int int
      StackMap stack:
            iconst_0
            istore 8 /* shouldSet */
         9: .line 441
      StackMap locals:
      StackMap stack:
            iload 8 /* shouldSet */
            ifeq 11
        10: .line 442
            aload 0 /* this */
            iload 6 /* i */
            invokevirtual javax.swing.DefaultListSelectionModel.set:(I)V
        11: .line 444
      StackMap locals:
      StackMap stack:
            iload 7 /* shouldClear */
            ifeq 13
        12: .line 445
            aload 0 /* this */
            iload 6 /* i */
            invokevirtual javax.swing.DefaultListSelectionModel.clear:(I)V
        end local 8 // boolean shouldSet
        end local 7 // boolean shouldClear
        13: .line 427
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 6 /* i */
            iload 4 /* setMax */
            iload 2 /* clearMax */
            invokestatic java.lang.Math.max:(II)I
            if_icmple 2
        end local 6 // int i
        15: .line 448
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
        16: .line 449
            return
        end local 5 // boolean clearFirst
        end local 4 // int setMax
        end local 3 // int setMin
        end local 2 // int clearMax
        end local 1 // int clearMin
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   17     0         this  Ljavax/swing/DefaultListSelectionModel;
            0   17     1     clearMin  I
            0   17     2     clearMax  I
            0   17     3       setMin  I
            0   17     4       setMax  I
            0   17     5   clearFirst  Z
            1   15     6            i  I
            3   13     7  shouldClear  Z
            4   13     8    shouldSet  Z
    MethodParameters:
            Name  Flags
      clearMin    
      clearMax    
      setMin      
      setMax      
      clearFirst  

  private void changeSelection(int, int, int, int);
    descriptor: (IIII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int clearMin
        start local 2 // int clearMax
        start local 3 // int setMin
        start local 4 // int setMax
         0: .line 458
            aload 0 /* this */
            iload 1 /* clearMin */
            iload 2 /* clearMax */
            iload 3 /* setMin */
            iload 4 /* setMax */
            iconst_1
            invokevirtual javax.swing.DefaultListSelectionModel.changeSelection:(IIIIZ)V
         1: .line 459
            return
        end local 4 // int setMax
        end local 3 // int setMin
        end local 2 // int clearMax
        end local 1 // int clearMin
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljavax/swing/DefaultListSelectionModel;
            0    2     1  clearMin  I
            0    2     2  clearMax  I
            0    2     3    setMin  I
            0    2     4    setMax  I
    MethodParameters:
          Name  Flags
      clearMin  
      clearMax  
      setMin    
      setMax    

  public void clearSelection();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 463
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            iconst_0
            invokevirtual javax.swing.DefaultListSelectionModel.removeSelectionIntervalImpl:(IIZ)V
         1: .line 464
            return
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/DefaultListSelectionModel;

  public void setSelectionInterval(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int index0
        start local 2 // int index1
         0: .line 488
            iload 1 /* index0 */
            iconst_m1
            if_icmpeq 1
            iload 2 /* index1 */
            iconst_m1
            if_icmpne 2
         1: .line 489
      StackMap locals:
      StackMap stack:
            return
         2: .line 492
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            ifne 4
         3: .line 493
            iload 2 /* index1 */
            istore 1 /* index0 */
         4: .line 496
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
         5: .line 498
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            istore 3 /* clearMin */
        start local 3 // int clearMin
         6: .line 499
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            istore 4 /* clearMax */
        start local 4 // int clearMax
         7: .line 500
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* setMin */
        start local 5 // int setMin
         8: .line 501
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.max:(II)I
            istore 6 /* setMax */
        start local 6 // int setMax
         9: .line 502
            aload 0 /* this */
            iload 3 /* clearMin */
            iload 4 /* clearMax */
            iload 5 /* setMin */
            iload 6 /* setMax */
            invokevirtual javax.swing.DefaultListSelectionModel.changeSelection:(IIII)V
        10: .line 503
            return
        end local 6 // int setMax
        end local 5 // int setMin
        end local 4 // int clearMax
        end local 3 // int clearMin
        end local 2 // int index1
        end local 1 // int index0
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Ljavax/swing/DefaultListSelectionModel;
            0   11     1    index0  I
            0   11     2    index1  I
            6   11     3  clearMin  I
            7   11     4  clearMax  I
            8   11     5    setMin  I
            9   11     6    setMax  I
    MethodParameters:
        Name  Flags
      index0  
      index1  

  public void addSelectionInterval(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int index0
        start local 2 // int index1
         0: .line 533
            iload 1 /* index0 */
            iconst_m1
            if_icmpeq 1
            iload 2 /* index1 */
            iconst_m1
            if_icmpne 2
         1: .line 534
      StackMap locals:
      StackMap stack:
            return
         2: .line 539
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            ifne 5
         3: .line 540
            aload 0 /* this */
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokevirtual javax.swing.DefaultListSelectionModel.setSelectionInterval:(II)V
         4: .line 541
            return
         5: .line 544
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
         6: .line 546
            ldc 2147483647
            istore 3 /* clearMin */
        start local 3 // int clearMin
         7: .line 547
            iconst_m1
            istore 4 /* clearMax */
        start local 4 // int clearMax
         8: .line 548
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* setMin */
        start local 5 // int setMin
         9: .line 549
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.max:(II)I
            istore 6 /* setMax */
        start local 6 // int setMax
        10: .line 554
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            iconst_1
            if_icmpne 14
        11: .line 555
            iload 6 /* setMax */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            iconst_1
            isub
            if_icmplt 12
            iload 5 /* setMin */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            iconst_1
            iadd
            if_icmple 14
        12: .line 557
      StackMap locals: javax.swing.DefaultListSelectionModel int int int int int int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokevirtual javax.swing.DefaultListSelectionModel.setSelectionInterval:(II)V
        13: .line 558
            return
        14: .line 561
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* clearMin */
            iload 4 /* clearMax */
            iload 5 /* setMin */
            iload 6 /* setMax */
            invokevirtual javax.swing.DefaultListSelectionModel.changeSelection:(IIII)V
        15: .line 562
            return
        end local 6 // int setMax
        end local 5 // int setMin
        end local 4 // int clearMax
        end local 3 // int clearMin
        end local 2 // int index1
        end local 1 // int index0
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Ljavax/swing/DefaultListSelectionModel;
            0   16     1    index0  I
            0   16     2    index1  I
            7   16     3  clearMin  I
            8   16     4  clearMax  I
            9   16     5    setMin  I
           10   16     6    setMax  I
    MethodParameters:
        Name  Flags
      index0  
      index1  

  public void removeSelectionInterval(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int index0
        start local 2 // int index1
         0: .line 591
            aload 0 /* this */
            iload 1 /* index0 */
            iload 2 /* index1 */
            iconst_1
            invokevirtual javax.swing.DefaultListSelectionModel.removeSelectionIntervalImpl:(IIZ)V
         1: .line 592
            return
        end local 2 // int index1
        end local 1 // int index0
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Ljavax/swing/DefaultListSelectionModel;
            0    2     1  index0  I
            0    2     2  index1  I
    MethodParameters:
        Name  Flags
      index0  
      index1  

  private void removeSelectionIntervalImpl(int, int, boolean);
    descriptor: (IIZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int index0
        start local 2 // int index1
        start local 3 // boolean changeLeadAnchor
         0: .line 599
            iload 1 /* index0 */
            iconst_m1
            if_icmpeq 1
            iload 2 /* index1 */
            iconst_m1
            if_icmpne 2
         1: .line 600
      StackMap locals:
      StackMap stack:
            return
         2: .line 603
      StackMap locals:
      StackMap stack:
            iload 3 /* changeLeadAnchor */
            ifeq 4
         3: .line 604
            aload 0 /* this */
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
         4: .line 607
      StackMap locals:
      StackMap stack:
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* clearMin */
        start local 4 // int clearMin
         5: .line 608
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.max:(II)I
            istore 5 /* clearMax */
        start local 5 // int clearMax
         6: .line 609
            ldc 2147483647
            istore 6 /* setMin */
        start local 6 // int setMin
         7: .line 610
            iconst_m1
            istore 7 /* setMax */
        start local 7 // int setMax
         8: .line 614
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            iconst_2
            if_icmpeq 11
         9: .line 615
            iload 4 /* clearMin */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            if_icmple 11
            iload 5 /* clearMax */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            if_icmpge 11
        10: .line 616
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            istore 5 /* clearMax */
        11: .line 619
      StackMap locals: javax.swing.DefaultListSelectionModel int int int int int int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* clearMin */
            iload 5 /* clearMax */
            iload 6 /* setMin */
            iload 7 /* setMax */
            invokevirtual javax.swing.DefaultListSelectionModel.changeSelection:(IIII)V
        12: .line 620
            return
        end local 7 // int setMax
        end local 6 // int setMin
        end local 5 // int clearMax
        end local 4 // int clearMin
        end local 3 // boolean changeLeadAnchor
        end local 2 // int index1
        end local 1 // int index0
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   13     0              this  Ljavax/swing/DefaultListSelectionModel;
            0   13     1            index0  I
            0   13     2            index1  I
            0   13     3  changeLeadAnchor  Z
            5   13     4          clearMin  I
            6   13     5          clearMax  I
            7   13     6            setMin  I
            8   13     7            setMax  I
    MethodParameters:
                  Name  Flags
      index0            
      index1            
      changeLeadAnchor  

  private void setState(int, boolean);
    descriptor: (IZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int index
        start local 2 // boolean state
         0: .line 623
            iload 2 /* state */
            ifeq 3
         1: .line 624
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual javax.swing.DefaultListSelectionModel.set:(I)V
         2: .line 625
            goto 4
         3: .line 627
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual javax.swing.DefaultListSelectionModel.clear:(I)V
         4: .line 629
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean state
        end local 1 // int index
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Ljavax/swing/DefaultListSelectionModel;
            0    5     1  index  I
            0    5     2  state  Z
    MethodParameters:
       Name  Flags
      index  
      state  

  public void insertIndexInterval(int, int, boolean);
    descriptor: (IIZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=4
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int index
        start local 2 // int length
        start local 3 // boolean before
         0: .line 644
            iload 3 /* before */
            ifeq 1
            iload 1 /* index */
            goto 2
      StackMap locals:
      StackMap stack:
         1: iload 1 /* index */
            iconst_1
            iadd
      StackMap locals:
      StackMap stack: int
         2: istore 4 /* insMinIndex */
        start local 4 // int insMinIndex
         3: .line 645
            iload 4 /* insMinIndex */
            iload 2 /* length */
            iadd
            iconst_1
            isub
            istore 5 /* insMaxIndex */
        start local 5 // int insMaxIndex
         4: .line 651
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            istore 6 /* i */
        start local 6 // int i
         5: goto 8
         6: .line 652
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 6 /* i */
            iload 2 /* length */
            iadd
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            iload 6 /* i */
            invokevirtual java.util.BitSet.get:(I)Z
            invokevirtual javax.swing.DefaultListSelectionModel.setState:(IZ)V
         7: .line 651
            iinc 6 /* i */ -1
      StackMap locals:
      StackMap stack:
         8: iload 6 /* i */
            iload 4 /* insMinIndex */
            if_icmpge 6
        end local 6 // int i
         9: .line 657
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            ifne 11
        10: .line 658
            iconst_0
            goto 12
      StackMap locals:
      StackMap stack:
        11: aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            iload 1 /* index */
            invokevirtual java.util.BitSet.get:(I)Z
        12: .line 657
      StackMap locals:
      StackMap stack: int
            istore 6 /* setInsertedValues */
        start local 6 // boolean setInsertedValues
        13: .line 659
            iload 4 /* insMinIndex */
            istore 7 /* i */
        start local 7 // int i
        14: goto 17
        15: .line 660
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 7 /* i */
            iload 6 /* setInsertedValues */
            invokevirtual javax.swing.DefaultListSelectionModel.setState:(IZ)V
        16: .line 659
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 7 /* i */
            iload 5 /* insMaxIndex */
            if_icmple 15
        end local 7 // int i
        18: .line 663
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            istore 7 /* leadIndex */
        start local 7 // int leadIndex
        19: .line 664
            iload 7 /* leadIndex */
            iload 1 /* index */
            if_icmpgt 20
            iload 3 /* before */
            ifeq 21
            iload 7 /* leadIndex */
            iload 1 /* index */
            if_icmpne 21
        20: .line 665
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            iload 2 /* length */
            iadd
            istore 7 /* leadIndex */
        21: .line 667
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            istore 8 /* anchorIndex */
        start local 8 // int anchorIndex
        22: .line 668
            iload 8 /* anchorIndex */
            iload 1 /* index */
            if_icmpgt 23
            iload 3 /* before */
            ifeq 24
            iload 8 /* anchorIndex */
            iload 1 /* index */
            if_icmpne 24
        23: .line 669
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            iload 2 /* length */
            iadd
            istore 8 /* anchorIndex */
        24: .line 671
      StackMap locals:
      StackMap stack:
            iload 7 /* leadIndex */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            if_icmpne 25
            iload 8 /* anchorIndex */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            if_icmpeq 26
        25: .line 672
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 8 /* anchorIndex */
            iload 7 /* leadIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
        26: .line 675
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
        27: .line 676
            return
        end local 8 // int anchorIndex
        end local 7 // int leadIndex
        end local 6 // boolean setInsertedValues
        end local 5 // int insMaxIndex
        end local 4 // int insMinIndex
        end local 3 // boolean before
        end local 2 // int length
        end local 1 // int index
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   28     0               this  Ljavax/swing/DefaultListSelectionModel;
            0   28     1              index  I
            0   28     2             length  I
            0   28     3             before  Z
            3   28     4        insMinIndex  I
            4   28     5        insMaxIndex  I
            5    9     6                  i  I
           13   28     6  setInsertedValues  Z
           14   18     7                  i  I
           19   28     7          leadIndex  I
           22   28     8        anchorIndex  I
    MethodParameters:
        Name  Flags
      index   
      length  
      before  

  public void removeIndexInterval(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=3
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int index0
        start local 2 // int index1
         0: .line 687
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* rmMinIndex */
        start local 3 // int rmMinIndex
         1: .line 688
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.max:(II)I
            istore 4 /* rmMaxIndex */
        start local 4 // int rmMaxIndex
         2: .line 689
            iload 4 /* rmMaxIndex */
            iload 3 /* rmMinIndex */
            isub
            iconst_1
            iadd
            istore 5 /* gapLength */
        start local 5 // int gapLength
         3: .line 694
            iload 3 /* rmMinIndex */
            istore 6 /* i */
        start local 6 // int i
         4: goto 7
         5: .line 695
      StackMap locals: javax.swing.DefaultListSelectionModel int int int int int int
      StackMap stack:
            aload 0 /* this */
            iload 6 /* i */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            iload 6 /* i */
            iload 5 /* gapLength */
            iadd
            invokevirtual java.util.BitSet.get:(I)Z
            invokevirtual javax.swing.DefaultListSelectionModel.setState:(IZ)V
         6: .line 694
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 6 /* i */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            if_icmple 5
        end local 6 // int i
         8: .line 698
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            istore 6 /* leadIndex */
        start local 6 // int leadIndex
         9: .line 699
            iload 6 /* leadIndex */
            ifne 10
            iload 3 /* rmMinIndex */
            ifeq 15
        10: .line 701
      StackMap locals:
      StackMap stack:
            iload 6 /* leadIndex */
            iload 4 /* rmMaxIndex */
            if_icmple 13
        11: .line 702
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            iload 5 /* gapLength */
            isub
            istore 6 /* leadIndex */
        12: .line 703
            goto 15
      StackMap locals:
      StackMap stack:
        13: iload 6 /* leadIndex */
            iload 3 /* rmMinIndex */
            if_icmplt 15
        14: .line 704
            iload 3 /* rmMinIndex */
            iconst_1
            isub
            istore 6 /* leadIndex */
        15: .line 707
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            istore 7 /* anchorIndex */
        start local 7 // int anchorIndex
        16: .line 708
            iload 7 /* anchorIndex */
            ifne 17
            iload 3 /* rmMinIndex */
            ifeq 22
        17: .line 710
      StackMap locals: int
      StackMap stack:
            iload 7 /* anchorIndex */
            iload 4 /* rmMaxIndex */
            if_icmple 20
        18: .line 711
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            iload 5 /* gapLength */
            isub
            istore 7 /* anchorIndex */
        19: .line 712
            goto 22
      StackMap locals:
      StackMap stack:
        20: iload 7 /* anchorIndex */
            iload 3 /* rmMinIndex */
            if_icmplt 22
        21: .line 713
            iload 3 /* rmMinIndex */
            iconst_1
            isub
            istore 7 /* anchorIndex */
        22: .line 716
      StackMap locals:
      StackMap stack:
            iload 6 /* leadIndex */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            if_icmpne 23
            iload 7 /* anchorIndex */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            if_icmpeq 24
        23: .line 717
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 7 /* anchorIndex */
            iload 6 /* leadIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
        24: .line 720
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
        25: .line 721
            return
        end local 7 // int anchorIndex
        end local 6 // int leadIndex
        end local 5 // int gapLength
        end local 4 // int rmMaxIndex
        end local 3 // int rmMinIndex
        end local 2 // int index1
        end local 1 // int index0
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   26     0         this  Ljavax/swing/DefaultListSelectionModel;
            0   26     1       index0  I
            0   26     2       index1  I
            1   26     3   rmMinIndex  I
            2   26     4   rmMaxIndex  I
            3   26     5    gapLength  I
            4    8     6            i  I
            9   26     6    leadIndex  I
           16   26     7  anchorIndex  I
    MethodParameters:
        Name  Flags
      index0  
      index1  

  public void setValueIsAdjusting(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // boolean isAdjusting
         0: .line 726
            iload 1 /* isAdjusting */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.isAdjusting:Z
            if_icmpeq 3
         1: .line 727
            aload 0 /* this */
            iload 1 /* isAdjusting */
            putfield javax.swing.DefaultListSelectionModel.isAdjusting:Z
         2: .line 728
            aload 0 /* this */
            iload 1 /* isAdjusting */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:(Z)V
         3: .line 730
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean isAdjusting
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Ljavax/swing/DefaultListSelectionModel;
            0    4     1  isAdjusting  Z
    MethodParameters:
             Name  Flags
      isAdjusting  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 740
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getValueIsAdjusting:()Z
            ifeq 1
            ldc "~"
            goto 2
      StackMap locals: javax.swing.DefaultListSelectionModel
      StackMap stack: new 0 new 0
         1: ldc "="
      StackMap locals: javax.swing.DefaultListSelectionModel
      StackMap stack: new 0 new 0 java.lang.String
         2: invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            invokevirtual java.util.BitSet.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 1 /* s */
        start local 1 // java.lang.String s
         3: .line 741
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual java.lang.Object.hashCode:()I
            invokestatic java.lang.Integer.toString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.String s
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/swing/DefaultListSelectionModel;
            3    4     1     s  Ljava/lang/String;

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 753
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast javax.swing.DefaultListSelectionModel
            astore 1 /* clone */
        start local 1 // javax.swing.DefaultListSelectionModel clone
         1: .line 754
            aload 1 /* clone */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            invokevirtual java.util.BitSet.clone:()Ljava/lang/Object;
            checkcast java.util.BitSet
            putfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
         2: .line 755
            aload 1 /* clone */
            new javax.swing.event.EventListenerList
            dup
            invokespecial javax.swing.event.EventListenerList.<init>:()V
            putfield javax.swing.DefaultListSelectionModel.listenerList:Ljavax/swing/event/EventListenerList;
         3: .line 756
            aload 1 /* clone */
            areturn
        end local 1 // javax.swing.DefaultListSelectionModel clone
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljavax/swing/DefaultListSelectionModel;
            1    4     1  clone  Ljavax/swing/DefaultListSelectionModel;
    Exceptions:
      throws java.lang.CloneNotSupportedException

  public int getAnchorSelectionIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 762
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            ireturn
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/DefaultListSelectionModel;
    RuntimeVisibleAnnotations: 
      java.beans.Transient()

  public int getLeadSelectionIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.DefaultListSelectionModel this
         0: .line 768
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            ireturn
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/DefaultListSelectionModel;
    RuntimeVisibleAnnotations: 
      java.beans.Transient()

  public void setAnchorSelectionIndex(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int anchorIndex
         0: .line 780
            aload 0 /* this */
            iload 1 /* anchorIndex */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
         1: .line 781
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
         2: .line 782
            return
        end local 1 // int anchorIndex
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Ljavax/swing/DefaultListSelectionModel;
            0    3     1  anchorIndex  I
    MethodParameters:
             Name  Flags
      anchorIndex  

  public void moveLeadSelectionIndex(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int leadIndex
         0: .line 799
            iload 1 /* leadIndex */
            iconst_m1
            if_icmpne 3
         1: .line 800
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            iconst_m1
            if_icmpeq 3
         2: .line 801
            return
         3: .line 819
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            iload 1 /* leadIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
         4: .line 820
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
         5: .line 821
            return
        end local 1 // int leadIndex
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Ljavax/swing/DefaultListSelectionModel;
            0    6     1  leadIndex  I
    MethodParameters:
           Name  Flags
      leadIndex  

  public void setLeadSelectionIndex(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int leadIndex
         0: .line 852
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            istore 2 /* anchorIndex */
        start local 2 // int anchorIndex
         1: .line 855
            iload 1 /* leadIndex */
            iconst_m1
            if_icmpne 6
         2: .line 856
            iload 2 /* anchorIndex */
            iconst_m1
            if_icmpne 5
         3: .line 857
            aload 0 /* this */
            iload 2 /* anchorIndex */
            iload 1 /* leadIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
         4: .line 858
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
         5: .line 861
      StackMap locals: int
      StackMap stack:
            return
         6: .line 863
      StackMap locals:
      StackMap stack:
            iload 2 /* anchorIndex */
            iconst_m1
            if_icmpne 8
         7: .line 864
            return
         8: .line 867
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            iconst_m1
            if_icmpne 10
         9: .line 868
            aload 0 /* this */
            iload 1 /* leadIndex */
            putfield javax.swing.DefaultListSelectionModel.leadIndex:I
        10: .line 871
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.value:Ljava/util/BitSet;
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            invokevirtual java.util.BitSet.get:(I)Z
            istore 3 /* shouldSelect */
        start local 3 // boolean shouldSelect
        11: .line 873
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            ifne 14
        12: .line 874
            iload 1 /* leadIndex */
            istore 2 /* anchorIndex */
        13: .line 875
            iconst_1
            istore 3 /* shouldSelect */
        14: .line 878
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* oldMin */
        start local 4 // int oldMin
        15: .line 879
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            invokestatic java.lang.Math.max:(II)I
            istore 5 /* oldMax */
        start local 5 // int oldMax
        16: .line 880
            iload 2 /* anchorIndex */
            iload 1 /* leadIndex */
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* newMin */
        start local 6 // int newMin
        17: .line 881
            iload 2 /* anchorIndex */
            iload 1 /* leadIndex */
            invokestatic java.lang.Math.max:(II)I
            istore 7 /* newMax */
        start local 7 // int newMax
        18: .line 883
            aload 0 /* this */
            iload 2 /* anchorIndex */
            iload 1 /* leadIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
        19: .line 885
            iload 3 /* shouldSelect */
            ifeq 22
        20: .line 886
            aload 0 /* this */
            iload 4 /* oldMin */
            iload 5 /* oldMax */
            iload 6 /* newMin */
            iload 7 /* newMax */
            invokevirtual javax.swing.DefaultListSelectionModel.changeSelection:(IIII)V
        21: .line 887
            goto 23
        22: .line 889
      StackMap locals: javax.swing.DefaultListSelectionModel int int int int int int int
      StackMap stack:
            aload 0 /* this */
            iload 6 /* newMin */
            iload 7 /* newMax */
            iload 4 /* oldMin */
            iload 5 /* oldMax */
            iconst_0
            invokevirtual javax.swing.DefaultListSelectionModel.changeSelection:(IIIIZ)V
        23: .line 891
      StackMap locals:
      StackMap stack:
            return
        end local 7 // int newMax
        end local 6 // int newMin
        end local 5 // int oldMax
        end local 4 // int oldMin
        end local 3 // boolean shouldSelect
        end local 2 // int anchorIndex
        end local 1 // int leadIndex
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   24     0          this  Ljavax/swing/DefaultListSelectionModel;
            0   24     1     leadIndex  I
            1   24     2   anchorIndex  I
           11   24     3  shouldSelect  Z
           15   24     4        oldMin  I
           16   24     5        oldMax  I
           17   24     6        newMin  I
           18   24     7        newMax  I
    MethodParameters:
           Name  Flags
      leadIndex  
}
SourceFile: "DefaultListSelectionModel.java"