Class SetChangeEvent<E>

  • Type Parameters:
    E - the type of elements in the change event
    All Implemented Interfaces:
    java.io.Serializable

    public class SetChangeEvent<E>
    extends ObservableEvent
    List change event describing an incremental change of an IObservableSet object.
    Since:
    1.0
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      SetDiff<E> diff
      Description of the change to the source observable set.
      • Fields inherited from class java.util.EventObject

        source
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected void dispatch​(IObservablesListener listener)
      Dispatch this event to the given listener.
      protected java.lang.Object getListenerType()
      Returns a unique object used for distinguishing this event type from others.
      IObservableSet<E> getObservableSet()
      Returns the observable set from which this event originated.
      • Methods inherited from class java.util.EventObject

        getSource, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • diff

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

      • SetChangeEvent

        public SetChangeEvent​(IObservableSet<E> source,
                              SetDiff<E> diff)
        Creates a new set change event.
        Parameters:
        source - the source observable set
        diff - the set change
    • Method Detail

      • getObservableSet

        public IObservableSet<E> getObservableSet()
        Returns the observable set from which this event originated.
        Returns:
        the observable set 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 java.lang.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.