Interface GamepadManager.GamepadAddedListener

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

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

    • added

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