Class PayloadEventImpl<P>

Type Parameters:
P - The type of the payload to be carried.
All Implemented Interfaces:
org.refcodes.mixin.PayloadAccessor<P>, org.refcodes.mixin.SourceAccessor<Object>, GenericEvent<Object>, GenericPayloadEvent<P,Object>, PayloadEvent<P>

public class PayloadEventImpl<P> extends AbstractPayloadEvent<P,Object> implements PayloadEvent<P>
Basic implementation of the PayloadEvent interface.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.refcodes.mixin.PayloadAccessor

    org.refcodes.mixin.PayloadAccessor.PayloadBuilder<P extends Object,B extends org.refcodes.mixin.PayloadAccessor.PayloadBuilder<P,B>>, org.refcodes.mixin.PayloadAccessor.PayloadMutator<P extends Object>, org.refcodes.mixin.PayloadAccessor.PayloadProperty<P extends Object>

    Nested classes/interfaces inherited from interface org.refcodes.mixin.SourceAccessor

    org.refcodes.mixin.SourceAccessor.SourceMutator<SRC extends Object>, org.refcodes.mixin.SourceAccessor.SourceProperty<SRC extends Object>
  • Constructor Summary

    Constructors
    Constructor
    Description
    PayloadEventImpl(P aPayload, Object aSource)
    Constructs an event with the given source.
  • Method Summary

    Modifier and Type
    Method
    Description

    Methods inherited from class org.refcodes.observer.AbstractPayloadEvent

    getPayload

    Methods inherited from class org.refcodes.observer.AbstractEvent

    getSource

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

    Methods inherited from interface org.refcodes.mixin.PayloadAccessor

    getPayload, getPayloadOr

    Methods inherited from interface org.refcodes.mixin.SourceAccessor

    getSource
  • Constructor Details

    • PayloadEventImpl

      public PayloadEventImpl(P aPayload, Object aSource)
      Constructs an event with the given source.
      Parameters:
      aPayload - The payload to be carried by the event.
      aSource - The source from which this event originated.
  • Method Details