Class AbstractEvent<SRC>

java.lang.Object
org.refcodes.observer.AbstractEvent<SRC>
Type Parameters:
SRC - The generic type of the event's source in question.
All Implemented Interfaces:
SourceAccessor<SRC>, Event<SRC>
Direct Known Subclasses:
AbstractActionEvent, AbstractMetaDataEvent, SubscribeEvent, UnsubscribeEvent

public abstract class AbstractEvent<SRC> extends Object implements Event<SRC>
The AbstractEvent provides a base implementation for an Event.
  • Constructor Details

    • AbstractEvent

      public AbstractEvent(SRC aSource)
      Constructs an event with the given source.
      Parameters:
      aSource - The source from which this event originated.
  • Method Details