Package com.github.tadukoo.util.event


package com.github.tadukoo.util.event
Contains classes to be used for custom Events in Java.
  • Class
    Description
    Represents a generic Event that has happened and may need to be handled by various EventHandlers.
    EventHandler<EventType extends Event,Listener extends EventListener<EventType>>
    An abstract class to handle the creation of Events and send them out to the various EventListeners to handle them appropriately.
    EventListener<EventType extends Event>
    A generic interface for listening for an Event to be handled.