javafx.event
Interface EventHandler<T extends Event>
Type Parameters:
T - the event class this handler can handle
All Superinterfaces:
All Known Implementing Classes:
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 EventHandler<T extends Event> extends EventListener
Handler for events of a specific class / type.
Since:
JavaFX 2.0
-
Method Summary
All MethodsInstance MethodsAbstract Methods Modifier and Type Method and Description voidhandle(T event)Invoked when a specific event of the type for which this handler is registered happens.
-
Method Detail
-
handle
void handle(T event)
Invoked when a specific event of the type for which this handler is registered happens.Parameters:
event- the event which occurred
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.