Class ListChangeEvent<E>

    • Field Detail

      • diff

        public ListDiff<E> diff
        Description of the change to the source observable list. Listeners must not change this field.
    • Constructor Detail

      • ListChangeEvent

        public ListChangeEvent​(IObservableList<E> source,
                               ListDiff<E> diff)
        Creates a new list change event.
        Parameters:
        source - the source observable list
        diff - the list change
    • Method Detail

      • getObservableList

        public IObservableList<E> getObservableList()
        Returns the observable list from which this event originated.
        Returns:
        the observable list from which this event originated
      • dispatch

        protected void dispatch​(IObservablesListener listener)
        Description copied from class: ObservableEvent
        Dispatch this event to the given listener. Subclasses must implement this method by calling the appropriate type-safe event handling method on the given listener according to the type of this event.
        Specified by:
        dispatch in class ObservableEvent
        Parameters:
        listener - the listener that should handle the event
      • getListenerType

        protected Object getListenerType()
        Description copied from class: ObservableEvent
        Returns a unique object used for distinguishing this event type from others.
        Specified by:
        getListenerType in class ObservableEvent
        Returns:
        a unique object representing the concrete type of this event.