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
    org.reactfx.value.Var<E>
    Returns selected element property
  • Method Summary

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

    • selectedElement

      org.reactfx.value.Var<E> selectedElementProperty
      Returns selected element property
      See Also:
  • Method Details

    • select

      void select(E element)
    • selectedElementProperty

      org.reactfx.value.Var<E> selectedElementProperty()
      Returns selected element property
      See Also:
    • getSelectedElement

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