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 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 57
            aload 0 /* this */
            iconst_2
            putfield javax.swing.DefaultListSelectionModel.selectionMode:I
         2: .line 58
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.minIndex:I
         3: .line 59
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.maxIndex:I
         4: .line 60
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.anchorIndex:I
         5: .line 61
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.leadIndex:I
         6: .line 62
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.firstAdjustedIndex:I
         7: .line 63
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.lastAdjustedIndex:I
         8: .line 64
            aload 0 /* this */
            iconst_0
            putfield javax.swing.DefaultListSelectionModel.isAdjusting:Z
         9: .line 66
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.firstChangedIndex:I
        10: .line 67
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.lastChangedIndex:I
        11: .line 69
            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 70
            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 72
            aload 0 /* this */
            iconst_1
            putfield javax.swing.DefaultListSelectionModel.leadAnchorNotificationEnabled:Z
        14: .line 53
            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 75
            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 78
            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 81
            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 84
            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=2, args_size=2
        start local 0 // javax.swing.DefaultListSelectionModel this
        start local 1 // int selectionMode
         0: .line 91
            iload 1 /* selectionMode */
            tableswitch { // 0 - 2
                    0: 1
                    1: 1
                    2: 1
              default: 3
          }
         1: .line 95
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* selectionMode */
            putfield javax.swing.DefaultListSelectionModel.selectionMode:I
         2: .line 96
            goto 4
         3: .line 98
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid selectionMode"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 100
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int selectionMode
        end local 0 // javax.swing.DefaultListSelectionModel this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Ljavax/swing/DefaultListSelectionModel;
            0    5     1  selectionMode  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 104
            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 109
            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 114
            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 115
            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 119
            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 120
            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 136
            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 143
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.lastChangedIndex:I
            iconst_m1
            if_icmpne 2
         1: .line 144
            return
         2: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.firstChangedIndex:I
            istore 2 /* oldFirstChangedIndex */
        start local 2 // int oldFirstChangedIndex
         3: .line 151
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.lastChangedIndex:I
            istore 3 /* oldLastChangedIndex */
        start local 3 // int oldLastChangedIndex
         4: .line 152
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.firstChangedIndex:I
         5: .line 153
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.lastChangedIndex:I
         6: .line 154
            aload 0 /* this */
            iload 2 /* oldFirstChangedIndex */
            iload 3 /* oldLastChangedIndex */
            iload 1 /* isAdjusting */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:(IIZ)V
         7: .line 155
            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 164
            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 165
            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 176
            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 177
            aconst_null
            astore 5 /* e */
        start local 5 // javax.swing.event.ListSelectionEvent e
         2: .line 179
            aload 4 /* listeners */
            arraylength
            iconst_2
            isub
            istore 6 /* i */
        start local 6 // int i
         3: goto 9
         4: .line 180
      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 181
            aload 5 /* e */
            ifnonnull 7
         6: .line 182
            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 184
      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 179
      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 187
            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 190
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.lastAdjustedIndex:I
            iconst_m1
            if_icmpne 2
         1: .line 191
            return
         2: .line 198
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getValueIsAdjusting:()Z
            ifeq 5
         3: .line 199
            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 200
            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 206
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.firstAdjustedIndex:I
            istore 1 /* oldFirstAdjustedIndex */
        start local 1 // int oldFirstAdjustedIndex
         6: .line 207
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.lastAdjustedIndex:I
            istore 2 /* oldLastAdjustedIndex */
        start local 2 // int oldLastAdjustedIndex
         7: .line 208
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.firstAdjustedIndex:I
         8: .line 209
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.lastAdjustedIndex:I
         9: .line 211
            aload 0 /* this */
            iload 1 /* oldFirstAdjustedIndex */
            iload 2 /* oldLastAdjustedIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:(II)V
        10: .line 212
            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 250
            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 255
            iload 1 /* r */
            iconst_m1
            if_icmpne 2
         1: .line 256
            return
         2: .line 259
      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 260
            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 261
            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 265
            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 266
            return
         2: .line 268
      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 269
            aload 0 /* this */
            iload 1 /* r */
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         4: .line 272
            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 273
            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 274
            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 278
            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 279
            return
         2: .line 281
      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 282
            aload 0 /* this */
            iload 1 /* r */
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         4: .line 291
            iload 1 /* r */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            if_icmpne 10
         5: .line 292
            aload 0 /* this */
            dup
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            iconst_1
            iadd
            putfield javax.swing.DefaultListSelectionModel.minIndex:I
            goto 9
         6: .line 293
      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 294
            goto 10
         8: .line 292
      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 304
      StackMap locals:
      StackMap stack:
            iload 1 /* r */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            if_icmpne 16
        11: .line 305
            aload 0 /* this */
            dup
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            iconst_1
            isub
            putfield javax.swing.DefaultListSelectionModel.maxIndex:I
            goto 15
        12: .line 306
      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 307
            goto 16
        14: .line 305
      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 326
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.isSelectionEmpty:()Z
            ifeq 19
        17: .line 327
            aload 0 /* this */
            ldc 2147483647
            putfield javax.swing.DefaultListSelectionModel.minIndex:I
        18: .line 328
            aload 0 /* this */
            iconst_m1
            putfield javax.swing.DefaultListSelectionModel.maxIndex:I
        19: .line 330
      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 337
            aload 0 /* this */
            iload 1 /* flag */
            putfield javax.swing.DefaultListSelectionModel.leadAnchorNotificationEnabled:Z
         1: .line 338
            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 359
            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 363
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadAnchorNotificationEnabled:Z
            ifeq 7
         1: .line 364
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            iload 1 /* anchorIndex */
            if_icmpeq 4
         2: .line 365
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         3: .line 366
            aload 0 /* this */
            iload 1 /* anchorIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         4: .line 369
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            iload 2 /* leadIndex */
            if_icmpeq 7
         5: .line 370
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         6: .line 371
            aload 0 /* this */
            iload 2 /* leadIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.markAsDirty:(I)V
         7: .line 374
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* anchorIndex */
            putfield javax.swing.DefaultListSelectionModel.anchorIndex:I
         8: .line 375
            aload 0 /* this */
            iload 2 /* leadIndex */
            putfield javax.swing.DefaultListSelectionModel.leadIndex:I
         9: .line 376
            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 379
            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 384
            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 386
      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 387
            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 389
            iload 8 /* shouldSet */
            ifeq 9
            iload 7 /* shouldClear */
            ifeq 9
         5: .line 390
            iload 5 /* clearFirst */
            ifeq 8
         6: .line 391
            iconst_0
            istore 7 /* shouldClear */
         7: .line 392
            goto 9
         8: .line 394
      StackMap locals: int int
      StackMap stack:
            iconst_0
            istore 8 /* shouldSet */
         9: .line 398
      StackMap locals:
      StackMap stack:
            iload 8 /* shouldSet */
            ifeq 11
        10: .line 399
            aload 0 /* this */
            iload 6 /* i */
            invokevirtual javax.swing.DefaultListSelectionModel.set:(I)V
        11: .line 401
      StackMap locals:
      StackMap stack:
            iload 7 /* shouldClear */
            ifeq 13
        12: .line 402
            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 384
      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 405
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
        16: .line 406
            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 415
            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 416
            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 420
            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 421
            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 445
            iload 1 /* index0 */
            iconst_m1
            if_icmpeq 1
            iload 2 /* index1 */
            iconst_m1
            if_icmpne 2
         1: .line 446
      StackMap locals:
      StackMap stack:
            return
         2: .line 449
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            ifne 4
         3: .line 450
            iload 2 /* index1 */
            istore 1 /* index0 */
         4: .line 453
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
         5: .line 455
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.minIndex:I
            istore 3 /* clearMin */
        start local 3 // int clearMin
         6: .line 456
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            istore 4 /* clearMax */
        start local 4 // int clearMax
         7: .line 457
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* setMin */
        start local 5 // int setMin
         8: .line 458
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.max:(II)I
            istore 6 /* setMax */
        start local 6 // int setMax
         9: .line 459
            aload 0 /* this */
            iload 3 /* clearMin */
            iload 4 /* clearMax */
            iload 5 /* setMin */
            iload 6 /* setMax */
            invokevirtual javax.swing.DefaultListSelectionModel.changeSelection:(IIII)V
        10: .line 460
            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 490
            iload 1 /* index0 */
            iconst_m1
            if_icmpeq 1
            iload 2 /* index1 */
            iconst_m1
            if_icmpne 2
         1: .line 491
      StackMap locals:
      StackMap stack:
            return
         2: .line 496
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            ifne 5
         3: .line 497
            aload 0 /* this */
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokevirtual javax.swing.DefaultListSelectionModel.setSelectionInterval:(II)V
         4: .line 498
            return
         5: .line 501
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
         6: .line 503
            ldc 2147483647
            istore 3 /* clearMin */
        start local 3 // int clearMin
         7: .line 504
            iconst_m1
            istore 4 /* clearMax */
        start local 4 // int clearMax
         8: .line 505
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* setMin */
        start local 5 // int setMin
         9: .line 506
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.max:(II)I
            istore 6 /* setMax */
        start local 6 // int setMax
        10: .line 511
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            iconst_1
            if_icmpne 14
        11: .line 512
            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 514
      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 515
            return
        14: .line 518
      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 519
            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 548
            aload 0 /* this */
            iload 1 /* index0 */
            iload 2 /* index1 */
            iconst_1
            invokevirtual javax.swing.DefaultListSelectionModel.removeSelectionIntervalImpl:(IIZ)V
         1: .line 549
            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 556
            iload 1 /* index0 */
            iconst_m1
            if_icmpeq 1
            iload 2 /* index1 */
            iconst_m1
            if_icmpne 2
         1: .line 557
      StackMap locals:
      StackMap stack:
            return
         2: .line 560
      StackMap locals:
      StackMap stack:
            iload 3 /* changeLeadAnchor */
            ifeq 4
         3: .line 561
            aload 0 /* this */
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
         4: .line 564
      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 565
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.max:(II)I
            istore 5 /* clearMax */
        start local 5 // int clearMax
         6: .line 566
            ldc 2147483647
            istore 6 /* setMin */
        start local 6 // int setMin
         7: .line 567
            iconst_m1
            istore 7 /* setMax */
        start local 7 // int setMax
         8: .line 571
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            iconst_2
            if_icmpeq 11
         9: .line 572
            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 573
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            istore 5 /* clearMax */
        11: .line 576
      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 577
            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 580
            iload 2 /* state */
            ifeq 3
         1: .line 581
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual javax.swing.DefaultListSelectionModel.set:(I)V
         2: .line 582
            goto 4
         3: .line 584
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual javax.swing.DefaultListSelectionModel.clear:(I)V
         4: .line 586
      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 601
            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 602
            iload 4 /* insMinIndex */
            iload 2 /* length */
            iadd
            iconst_1
            isub
            istore 5 /* insMaxIndex */
        start local 5 // int insMaxIndex
         4: .line 608
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.maxIndex:I
            istore 6 /* i */
        start local 6 // int i
         5: goto 8
         6: .line 609
      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 608
            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 614
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            ifne 11
        10: .line 615
            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 614
      StackMap locals:
      StackMap stack: int
            istore 6 /* setInsertedValues */
        start local 6 // boolean setInsertedValues
        13: .line 616
            iload 4 /* insMinIndex */
            istore 7 /* i */
        start local 7 // int i
        14: goto 17
        15: .line 617
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 7 /* i */
            iload 6 /* setInsertedValues */
            invokevirtual javax.swing.DefaultListSelectionModel.setState:(IZ)V
        16: .line 616
            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 620
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            istore 7 /* leadIndex */
        start local 7 // int leadIndex
        19: .line 621
            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 622
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            iload 2 /* length */
            iadd
            istore 7 /* leadIndex */
        21: .line 624
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            istore 8 /* anchorIndex */
        start local 8 // int anchorIndex
        22: .line 625
            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 626
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            iload 2 /* length */
            iadd
            istore 8 /* anchorIndex */
        24: .line 628
      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 629
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 8 /* anchorIndex */
            iload 7 /* leadIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
        26: .line 632
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
        27: .line 633
            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 644
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* rmMinIndex */
        start local 3 // int rmMinIndex
         1: .line 645
            iload 1 /* index0 */
            iload 2 /* index1 */
            invokestatic java.lang.Math.max:(II)I
            istore 4 /* rmMaxIndex */
        start local 4 // int rmMaxIndex
         2: .line 646
            iload 4 /* rmMaxIndex */
            iload 3 /* rmMinIndex */
            isub
            iconst_1
            iadd
            istore 5 /* gapLength */
        start local 5 // int gapLength
         3: .line 651
            iload 3 /* rmMinIndex */
            istore 6 /* i */
        start local 6 // int i
         4: goto 7
         5: .line 652
      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 651
            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 655
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            istore 6 /* leadIndex */
        start local 6 // int leadIndex
         9: .line 656
            iload 6 /* leadIndex */
            ifne 10
            iload 3 /* rmMinIndex */
            ifeq 15
        10: .line 658
      StackMap locals:
      StackMap stack:
            iload 6 /* leadIndex */
            iload 4 /* rmMaxIndex */
            if_icmple 13
        11: .line 659
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            iload 5 /* gapLength */
            isub
            istore 6 /* leadIndex */
        12: .line 660
            goto 15
      StackMap locals:
      StackMap stack:
        13: iload 6 /* leadIndex */
            iload 3 /* rmMinIndex */
            if_icmplt 15
        14: .line 661
            iload 3 /* rmMinIndex */
            iconst_1
            isub
            istore 6 /* leadIndex */
        15: .line 664
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            istore 7 /* anchorIndex */
        start local 7 // int anchorIndex
        16: .line 665
            iload 7 /* anchorIndex */
            ifne 17
            iload 3 /* rmMinIndex */
            ifeq 22
        17: .line 667
      StackMap locals: int
      StackMap stack:
            iload 7 /* anchorIndex */
            iload 4 /* rmMaxIndex */
            if_icmple 20
        18: .line 668
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            iload 5 /* gapLength */
            isub
            istore 7 /* anchorIndex */
        19: .line 669
            goto 22
      StackMap locals:
      StackMap stack:
        20: iload 7 /* anchorIndex */
            iload 3 /* rmMinIndex */
            if_icmplt 22
        21: .line 670
            iload 3 /* rmMinIndex */
            iconst_1
            isub
            istore 7 /* anchorIndex */
        22: .line 673
      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 674
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 7 /* anchorIndex */
            iload 6 /* leadIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
        24: .line 677
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
        25: .line 678
            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 683
            iload 1 /* isAdjusting */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.isAdjusting:Z
            if_icmpeq 3
         1: .line 684
            aload 0 /* this */
            iload 1 /* isAdjusting */
            putfield javax.swing.DefaultListSelectionModel.isAdjusting:Z
         2: .line 685
            aload 0 /* this */
            iload 1 /* isAdjusting */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:(Z)V
         3: .line 687
      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 697
            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 698
            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 710
            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 711
            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 712
            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 713
            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 719
            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 725
            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 737
            aload 0 /* this */
            iload 1 /* anchorIndex */
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
         1: .line 738
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
         2: .line 739
            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 756
            iload 1 /* leadIndex */
            iconst_m1
            if_icmpne 3
         1: .line 757
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            iconst_m1
            if_icmpeq 3
         2: .line 758
            return
         3: .line 776
      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 777
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
         5: .line 778
            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 809
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.anchorIndex:I
            istore 2 /* anchorIndex */
        start local 2 // int anchorIndex
         1: .line 812
            iload 1 /* leadIndex */
            iconst_m1
            if_icmpne 6
         2: .line 813
            iload 2 /* anchorIndex */
            iconst_m1
            if_icmpne 5
         3: .line 814
            aload 0 /* this */
            iload 2 /* anchorIndex */
            iload 1 /* leadIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
         4: .line 815
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.fireValueChanged:()V
         5: .line 818
      StackMap locals: int
      StackMap stack:
            return
         6: .line 820
      StackMap locals:
      StackMap stack:
            iload 2 /* anchorIndex */
            iconst_m1
            if_icmpne 8
         7: .line 821
            return
         8: .line 824
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.DefaultListSelectionModel.leadIndex:I
            iconst_m1
            if_icmpne 10
         9: .line 825
            aload 0 /* this */
            iload 1 /* leadIndex */
            putfield javax.swing.DefaultListSelectionModel.leadIndex:I
        10: .line 828
      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 830
            aload 0 /* this */
            invokevirtual javax.swing.DefaultListSelectionModel.getSelectionMode:()I
            ifne 14
        12: .line 831
            iload 1 /* leadIndex */
            istore 2 /* anchorIndex */
        13: .line 832
            iconst_1
            istore 3 /* shouldSelect */
        14: .line 835
      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 836
            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 837
            iload 2 /* anchorIndex */
            iload 1 /* leadIndex */
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* newMin */
        start local 6 // int newMin
        17: .line 838
            iload 2 /* anchorIndex */
            iload 1 /* leadIndex */
            invokestatic java.lang.Math.max:(II)I
            istore 7 /* newMax */
        start local 7 // int newMax
        18: .line 840
            aload 0 /* this */
            iload 2 /* anchorIndex */
            iload 1 /* leadIndex */
            invokevirtual javax.swing.DefaultListSelectionModel.updateLeadAnchorIndices:(II)V
        19: .line 842
            iload 3 /* shouldSelect */
            ifeq 22
        20: .line 843
            aload 0 /* this */
            iload 4 /* oldMin */
            iload 5 /* oldMax */
            iload 6 /* newMin */
            iload 7 /* newMax */
            invokevirtual javax.swing.DefaultListSelectionModel.changeSelection:(IIII)V
        21: .line 844
            goto 23
        22: .line 846
      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 848
      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"