/* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.event; import java.util.EventListener; // PENDING_DOC_REVIEW /** * Handler for events of a specific class / type. * * @param the event class this handler can handle * @since JavaFX 2.0 */ @FunctionalInterface public interface EventHandler extends EventListener { /** * Invoked when a specific event of the type for which this handler is * registered happens. * * @param event the event which occurred */ void handle(T event); }