Package 

Interface EventListener


  • 
    public interface EventListener
    
                        

    Abstract class used as part of the event registration process. Components may create anonymous classes using this interface.

    • Method Summary

      Modifier and Type Method Description
      abstract void processEvent(Event event) Process a given event to some purpose.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • processEvent

         abstract void processEvent(Event event)

        Process a given event to some purpose. The event can contain or provide payload datavia properties.

        Parameters:
        event - The given event.