JavaFX object to be wrapped.
JavaFX object to be wrapped.
Dispatches the specified event by this .
Dispatches the specified event by this . Does any required event processing. Both the event and its further path can be modified in this method. If the event is not handled / consumed during the capturing phase, it should be dispatched to the rest of the chain ().
the event do dispatch
the rest of the chain to dispatch event to
the return event or if the event has been handled / consumed
Verifies if a object is equals to this delegate.
Verifies if a object is equals to this delegate.
Object to be compared.
if the other object is equals to this delegate or not.
The delegate hashcode
Returns the original delegate's toString()
adding a [SFX]
prefix.
An represents an event dispatching and processing entity. It is used when an needs to be dispatched to the associated
EventTarget
through theEventDispatchChain
specified by the target. Each in the chain can influence the event path and the event itself. One can appear in multiple chains.Wraps a JavaFX EventDispatcher.