Interface EventListener<E extends Event>

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface EventListener<E extends Event>

EventListener interface.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handleEvent.
  • Method Details

    • handleEvent

      void handleEvent(E evt)

      handleEvent.

      Parameters:
      evt - a E object.