public abstract class javafx.scene.control.SelectionModel<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: javafx.scene.control.SelectionModel
  super_class: java.lang.Object
{
  private javafx.beans.property.ReadOnlyIntegerWrapper selectedIndex;
    descriptor: Ljavafx/beans/property/ReadOnlyIntegerWrapper;
    flags: (0x0002) ACC_PRIVATE

  private javafx.beans.property.ReadOnlyObjectWrapper<T> selectedItem;
    descriptor: Ljavafx/beans/property/ReadOnlyObjectWrapper;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljavafx/beans/property/ReadOnlyObjectWrapper<TT;>;

  public final javafx.beans.property.ReadOnlyIntegerProperty selectedIndexProperty();
    descriptor: ()Ljavafx/beans/property/ReadOnlyIntegerProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.scene.control.SelectionModel this
         0: .line 67
            aload 0 /* this */
            getfield javafx.scene.control.SelectionModel.selectedIndex:Ljavafx/beans/property/ReadOnlyIntegerWrapper;
            invokevirtual javafx.beans.property.ReadOnlyIntegerWrapper.getReadOnlyProperty:()Ljavafx/beans/property/ReadOnlyIntegerProperty;
            areturn
        end local 0 // javafx.scene.control.SelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/control/SelectionModel<TT;>;

  protected final void setSelectedIndex(int);
    descriptor: (I)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.scene.control.SelectionModel this
        start local 1 // int value
         0: .line 69
            aload 0 /* this */
            getfield javafx.scene.control.SelectionModel.selectedIndex:Ljavafx/beans/property/ReadOnlyIntegerWrapper;
            iload 1 /* value */
            invokevirtual javafx.beans.property.ReadOnlyIntegerWrapper.set:(I)V
            return
        end local 1 // int value
        end local 0 // javafx.scene.control.SelectionModel this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljavafx/scene/control/SelectionModel<TT;>;
            0    1     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public final int getSelectedIndex();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.scene.control.SelectionModel this
         0: .line 87
            aload 0 /* this */
            invokevirtual javafx.scene.control.SelectionModel.selectedIndexProperty:()Ljavafx/beans/property/ReadOnlyIntegerProperty;
            invokevirtual javafx.beans.property.ReadOnlyIntegerProperty.get:()I
            ireturn
        end local 0 // javafx.scene.control.SelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/control/SelectionModel<TT;>;

  public final javafx.beans.property.ReadOnlyObjectProperty<T> selectedItemProperty();
    descriptor: ()Ljavafx/beans/property/ReadOnlyObjectProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.scene.control.SelectionModel this
         0: .line 103
            aload 0 /* this */
            getfield javafx.scene.control.SelectionModel.selectedItem:Ljavafx/beans/property/ReadOnlyObjectWrapper;
            invokevirtual javafx.beans.property.ReadOnlyObjectWrapper.getReadOnlyProperty:()Ljavafx/beans/property/ReadOnlyObjectProperty;
            areturn
        end local 0 // javafx.scene.control.SelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/control/SelectionModel<TT;>;
    Signature: ()Ljavafx/beans/property/ReadOnlyObjectProperty<TT;>;

  protected final void setSelectedItem();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.scene.control.SelectionModel this
        start local 1 // java.lang.Object value
         0: .line 105
            aload 0 /* this */
            getfield javafx.scene.control.SelectionModel.selectedItem:Ljavafx/beans/property/ReadOnlyObjectWrapper;
            aload 1 /* value */
            invokevirtual javafx.beans.property.ReadOnlyObjectWrapper.set:(Ljava/lang/Object;)V
            return
        end local 1 // java.lang.Object value
        end local 0 // javafx.scene.control.SelectionModel this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljavafx/scene/control/SelectionModel<TT;>;
            0    1     1  value  TT;
    Signature: (TT;)V
    MethodParameters:
       Name  Flags
      value  

  public final T getSelectedItem();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.scene.control.SelectionModel this
         0: .line 124
            aload 0 /* this */
            invokevirtual javafx.scene.control.SelectionModel.selectedItemProperty:()Ljavafx/beans/property/ReadOnlyObjectProperty;
            invokevirtual javafx.beans.property.ReadOnlyObjectProperty.get:()Ljava/lang/Object;
            areturn
        end local 0 // javafx.scene.control.SelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/control/SelectionModel<TT;>;
    Signature: ()TT;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // javafx.scene.control.SelectionModel this
         0: .line 136
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 68
            aload 0 /* this */
            new javafx.beans.property.ReadOnlyIntegerWrapper
            dup
            aload 0 /* this */
            ldc "selectedIndex"
            iconst_m1
            invokespecial javafx.beans.property.ReadOnlyIntegerWrapper.<init>:(Ljava/lang/Object;Ljava/lang/String;I)V
            putfield javafx.scene.control.SelectionModel.selectedIndex:Ljavafx/beans/property/ReadOnlyIntegerWrapper;
         2: .line 104
            aload 0 /* this */
            new javafx.beans.property.ReadOnlyObjectWrapper
            dup
            aload 0 /* this */
            ldc "selectedItem"
            invokespecial javafx.beans.property.ReadOnlyObjectWrapper.<init>:(Ljava/lang/Object;Ljava/lang/String;)V
            putfield javafx.scene.control.SelectionModel.selectedItem:Ljavafx/beans/property/ReadOnlyObjectWrapper;
         3: .line 136
            return
        end local 0 // javafx.scene.control.SelectionModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavafx/scene/control/SelectionModel<TT;>;

  public abstract void clearAndSelect(int);
    descriptor: (I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  public abstract void select(int);
    descriptor: (I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  public abstract void select();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      obj   

  public abstract void clearSelection(int);
    descriptor: (I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  public abstract void clearSelection();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isSelected(int);
    descriptor: (I)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  public abstract boolean isEmpty();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void selectPrevious();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void selectNext();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void selectFirst();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void selectLast();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "SelectionModel.java"