Interface GamepadManager.GamepadRemovedListener

All Superinterfaces:
java.util.EventListener
Enclosing class:
GamepadManager
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 GamepadManager.GamepadRemovedListener
extends java.util.EventListener
This listener interface receives events when gamepads gets removed.
See Also:
GamepadManager.onAdded(GamepadAddedListener)
  • Method Summary

    Modifier and TypeMethodDescription
    voidremoved​(Gamepad gamepad)
    Invoked when a gamepad was removed.
  • Method Details

    • removed

      void removed​(Gamepad gamepad)
      Invoked when a gamepad was removed.
      Parameters:
      gamepad - The removed gamepad.