Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Registers an event filter to this task.
Registers an event filter to this task. Registered event filters get an event before any associated event handlers.
Event class
the type of the events to receive by the filter
the filter to register that will filter event
Registers an event handler to this task.
Registers an event handler to this task. Any event filters are first processed, then the specified onFoo event handlers, and finally any event handlers registered by this method. As with other events in the scene graph, if an event is consumed, it will not continue dispatching.
Event class
the type of the events to receive by the handler
the handler to register that will manipulate event
Construct an event dispatch chain for this target.
Construct an event dispatch chain for this target.
Terminates execution of this Worker.
Terminates execution of this Worker.
JavaFX object to be wrapped.
JavaFX object to be wrapped.
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.
Returns a object that implements scalafx.event.EventHandlerDelegate.EventHandled.
Returns a object that implements scalafx.event.EventHandlerDelegate.EventHandled.
Gets the ReadOnlyObjectProperty representing any exception which occurred.
Gets the ReadOnlyObjectProperty representing any exception which occurred.
The executor to use for running this Service.
Registers an event filter.
Registers an event filter. Registered event filters get an event before any associated event handlers.
Example of filtering mouse events
pane.filterEvent(MouseEvent.Any) { me: MouseEvent => { me.eventType match { case MouseEvent.MousePressed => { ... } case MouseEvent.MouseDragged => { ... } case _ => { ... } } } }
or
pane.filterEvent(MouseEvent.Any) { () => println("Some mouse event handled") }
type JavaFX delegate of the event
ScalaFX type for J
type wrapper.
type of events that will be handled.
code handling the event, see examples above.
Registers an event handler.
Registers an event handler. The handler is called when the node receives an Event of the specified type during the bubbling phase of event delivery.
Example of handling mouse events
pane.handleEvent(MouseEvent.Any) { me: MouseEvent => { me.eventType match { case MouseEvent.MousePressed => ... case MouseEvent.MouseDragged => ... case _ => {} } } }
or
pane.handleEvent(MouseEvent.Any) { () => println("Some mouse event handled") }
type JavaFX delegate of the event
ScalaFX type for J
type wrapper.
type of events that will be handled.
code handling the event, see examples above.
Returns a subscription that can be used to cancel/remove this event handler
The delegate hashcode
Gets the ReadOnlyStringProperty representing the message.
Gets the ReadOnlyStringProperty representing the message.
The onCancelled event handler is called whenever the Task state transitions to the CANCELLED state.
The onFailed event handler is called whenever the Task state transitions to the FAILED state.
The onReady event handler is called whenever the Task state transitions to the READY state.
The onRunning event handler is called whenever the Task state transitions to the RUNNING state.
The onSchedule event handler is called whenever the Task state transitions to the SCHEDULED state.
The onSucceeded event handler is called whenever the Task state transitions to the SUCCEEDED state.
Gets the ReadOnlyDoubleProperty representing the progress.
Gets the ReadOnlyDoubleProperty representing the progress.
Unregisters a previously registered event filter from this task.
Unregisters a previously registered event filter from this task. One filter might have been registered for different event types, so the caller needs to specify the particular event type from which to unregister the filter.
Event class
the event type from which to unregister
the filter to unregister
Unregisters a previously registered event handler from this task.
Unregisters a previously registered event handler from this task. One handler might have been registered for different event types, so the caller needs to specify the particular event type from which to unregister the handler.
Event class
the event type from which to unregister
the handler to unregister
Resets the Service.
Cancels any currently running Task, if any, and restarts this Service.
Gets the ReadOnlyBooleanProperty representing whether the Worker is running.
Gets the ReadOnlyBooleanProperty representing whether the Worker is running.
Starts this Service.
Gets the ReadOnlyObjectProperty representing the current state.
Gets the ReadOnlyObjectProperty representing the current state.
Gets the ReadOnlyStringProperty representing the title.
Gets the ReadOnlyStringProperty representing the title.
Returns the original delegate's toString()
adding a [SFX]
prefix.
Gets the ReadOnlyDoubleProperty representing the maximum amount of work that needs to be done.
Gets the ReadOnlyDoubleProperty representing the maximum amount of work that needs to be done.
Gets the ReadOnlyObjectProperty representing the value.
Gets the ReadOnlyObjectProperty representing the value.
Gets the ReadOnlyDoubleProperty representing the current progress.
Gets the ReadOnlyDoubleProperty representing the current progress.
Wrapper trait for Service Class.