Interface EventDispatchChain
public interface EventDispatchChain
EventDispatcher objects, which can dispatch an Event. The event is dispatched by passing it from one EventDispatcher to the next in the chain until the end of chain is reached. Each EventDispatcher in the chain can influence the event path and the event itself. The chain is usually formed by following some parent - child hierarchy from the root to the event target and appending all EventDispatcher objects encountered to the chain.Since:
JavaFX 2.0
-
Method Summary
All MethodsInstance MethodsAbstract Methods Modifier and Type Method and Description EventDispatchChainappend(EventDispatcher eventDispatcher)Appends the specifiedEventDispatcherto this chain.EventdispatchEvent(Event event)Dispatches the specified event through thisEventDispatchChain.EventDispatchChainprepend(EventDispatcher eventDispatcher)Prepends the specifiedEventDispatcherto this chain.
-
Method Detail
-
append
EventDispatchChain append(EventDispatcher eventDispatcher)
Appends the specifiedEventDispatcherto this chain. Returns a reference to the chain with the appended element.The caller shouldn't assume that this
EventDispatchChainremains unchanged nor that the returned value will reference a different chain after the call. All this depends on theEventDispatchChainimplementation.So the call should be always done in the following form:
chain = chain.append(eventDispatcher);Parameters:
eventDispatcher- theEventDispatcherto append to the chainReturns:
the chain with the appended event dispatcher
-
prepend
EventDispatchChain prepend(EventDispatcher eventDispatcher)
Prepends the specifiedEventDispatcherto this chain. Returns a reference to the chain with the prepended element.The caller shouldn't assume that this
EventDispatchChainremains unchanged nor that the returned value will reference a different chain after the call. All this depends on theEventDispatchChainimplementation.So the call should be always done in the following form:
chain = chain.prepend(eventDispatcher);Parameters:
eventDispatcher- theEventDispatcherto prepend to the chainReturns:
the chain with the prepended event dispatcher
-
dispatchEvent
Event dispatchEvent(Event event)
Dispatches the specified event through thisEventDispatchChain. The return value represents the event after processing done by the chain. If further processing is to be done after the call the event referenced by the return value should be used instead of the original event. In the case the event is fully handled / consumed in the chain the returned value isnulland no further processing should be done with that event.Parameters:
event- the event to dispatchReturns:
the processed event or
nullif the event had been fully handled / consumed
-
© 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.