Interface Selectable<E>

All Known Subinterfaces:
ListModel<E>
All Known Implementing Classes:
BaseListModel

public interface Selectable<E>
Ability to select element in elements observable list. Mostly used to explicitly select an element in the list view from list-detail view pattern. Also provides selected element property
  • Property Summary

    Properties
    Type
    Property
    Description
    javafx.beans.property.Property<E>
    Returns selected element property
  • Method Summary

    Modifier and Type
    Method
    Description
    default E
    Gets the value of the selectedElement property.
    void
    select(E element)
     
    javafx.beans.property.Property<E>
    Returns selected element property
  • Property Details

  • Method Details

    • select

      void select(E element)
    • selectedElementProperty

      javafx.beans.property.Property<E> selectedElementProperty()
      Returns selected element property
      Returns:
      the selectedElement property
      See Also:
    • getSelectedElement

      default E getSelectedElement()
      Gets the value of the selectedElement property.
      Property description:
      Returns selected element property
      Returns:
      the value of the selectedElement property
      See Also: