Class MultiMutableSelectedState<T>

    • Field Detail

      • selected

        protected Set<T> selected
        the 'selected' items
    • Constructor Detail

      • MultiMutableSelectedState

        public MultiMutableSelectedState()
    • Method Detail

      • select

        public boolean select​(T element)
        Select an element
        Specified by:
        select in interface MutableSelectedState<T>
        Parameters:
        element - the element to select
        Returns:
        true if the collection of selected changed
      • select

        public boolean select​(T element,
                              boolean fireEvents)
        Description copied from interface: MutableSelectedStateSink
        select one element.
        Specified by:
        select in interface MutableSelectedState<T>
        Specified by:
        select in interface MutableSelectedStateSink<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

        public boolean deselect​(T t,
                                boolean fireEvents)
        if t is was already selected, remove it
        Specified by:
        deselect in interface MutableSelectedState<T>
        Specified by:
        deselect in interface MutableSelectedStateSink<T>
        Parameters:
        t - item to de-select
        fireEvents - act as a sink, if true, do not fire events
        Returns:
        true if the collection of selected things was modified
      • deselect

        public boolean deselect​(T element)
        Description copied from interface: MutableSelectedState
        deselect one element
        Specified by:
        deselect in interface MutableSelectedState<T>
        Parameters:
        element - the element to deselect
        Returns:
        true is the collection of selected elements was changed
      • select

        public boolean select​(Collection<T> elements)
        Description copied from interface: MutableSelectedState
        select a collection of elements to be the only selected elements
        Specified by:
        select in interface MutableSelectedState<T>
        Returns:
        true if the collection of selected elements was changed
      • deselect

        public boolean deselect​(Collection<T> elements,
                                boolean fireEvents)
        Description copied from interface: MutableSelectedStateSink
        deselect a collection of elements
        Specified by:
        deselect in interface MutableSelectedState<T>
        Specified by:
        deselect in interface MutableSelectedStateSink<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
      • deselect

        public boolean deselect​(Collection<T> elements)
        Description copied from interface: MutableSelectedState
        deselect a collection of elements
        Specified by:
        deselect in interface MutableSelectedState<T>
        Parameters:
        elements - the elements to deselect
        Returns:
        true if the collection of selected elements was changed