Interface IKeyboard.KeyReleasedListener

All Superinterfaces:
EventListener
Enclosing interface:
IKeyboard
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 static interface IKeyboard.KeyReleasedListener extends EventListener
This listener interface receives released events for the keyboard.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Invoked when a key has been released.
  • Method Details

    • keyReleased

      void keyReleased(KeyEvent event)
      Invoked when a key has been released. See the class description for KeyEvent for a definition of a key released event.
      Parameters:
      event - The key event.