Interface MutableSelectedStateSink<T>

    • Method Detail

      • select

        boolean select​(T element,
                       boolean fireEvents)
        select one element.
        Specified by:
        select in interface MutableSelectedState<T>
        Parameters:
        element - the element to select
        fireEvents - if false, act as a sink, if true, do not fire events
        Returns:
        true if the collection of selected elements was changed
      • deselect

        boolean deselect​(T element,
                         boolean fireEvents)
        deselect one element
        Specified by:
        deselect in interface MutableSelectedState<T>
        Parameters:
        element - the element to deselect
        fireEvents - act as a sink, if true, do not fire events
        Returns:
        true is the collection of selected elements was changed
      • select

        boolean select​(Collection<T> elements,
                       boolean fireEvents)
        select a collection of elements to be the only selected elements
        Specified by:
        select in interface MutableSelectedState<T>
        Parameters:
        elements -
        fireEvents - if false, act as a sink, if true, do not fire events
        Returns:
        true if the collection of selected elements was changed
      • deselect

        boolean deselect​(Collection<T> elements,
                         boolean fireEvents)
        deselect a collection of elements
        Specified by:
        deselect in interface MutableSelectedState<T>
        Parameters:
        elements - the elements to deselect
        fireEvents - if false, act as a sink, if true, do not fire events
        Returns:
        true if the collection of selected elements was changed
      • clear

        void clear​(boolean fireEvents)
        Clears the "selected" state from all elements.
        Specified by:
        clear in interface MutableSelectedState<T>
        Parameters:
        fireEvents - if false, act as a sink, if true, do not fire events