Package | Description |
---|---|
com.sun.javafx.charts | |
com.sun.javafx.event | |
com.sun.javafx.menu | |
com.sun.javafx.scene | |
com.sun.javafx.scene.control.skin | |
javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
javafx.concurrent |
Provides the set of classes for javafx.task.
|
javafx.event |
Provides basic framework for FX events, their delivery and handling.
|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.scene.control |
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
|
javafx.scene.media |
Provides the set of classes for integrating audio and video into Java FX
Applications.
|
javafx.scene.transform |
Provides the set of convenient classes to perform rotating, scaling,
shearing, and translation transformations for
Affine objects. |
javafx.scene.web |
This package provides means for loading and displaying Web content.
|
javafx.stage |
Provides the top-level container classes for JavaFX content.
|
Modifier and Type | Class and Description |
---|---|
class |
ChartLayoutAnimator
Runs any number of animations of KeyFrames calling requestLayout on the given node for every frame while one of
those animations is running.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<? super T> |
CompositeEventHandler.getEventHandler() |
<T extends Event> |
EventHandlerManager.getEventHandler(EventType<T> eventType) |
Modifier and Type | Method and Description |
---|---|
void |
CompositeEventHandler.addEventFilter(EventHandler<? super T> eventFilter) |
<T extends Event> |
EventHandlerManager.addEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Registers an event filter in
EventHandlerManager . |
void |
CompositeEventHandler.addEventHandler(EventHandler<? super T> eventHandler) |
<T extends Event> |
EventHandlerManager.addEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Registers an event handler in
EventHandlerManager . |
void |
CompositeEventHandler.removeEventFilter(EventHandler<? super T> eventFilter) |
<T extends Event> |
EventHandlerManager.removeEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Unregisters a previously registered event filter.
|
void |
CompositeEventHandler.removeEventHandler(EventHandler<? super T> eventHandler) |
<T extends Event> |
EventHandlerManager.removeEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Unregisters a previously registered event handler.
|
void |
CompositeEventHandler.setEventHandler(EventHandler<? super T> eventHandler) |
<T extends Event> |
EventHandlerManager.setEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Sets the specified singleton handler.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<ActionEvent> |
MenuItemBase.getOnAction() |
EventHandler<Event> |
MenuBase.getOnHidden() |
EventHandler<Event> |
MenuBase.getOnHiding() |
EventHandler<Event> |
MenuBase.getOnShowing() |
EventHandler<Event> |
MenuBase.getOnShown() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<ActionEvent>> |
MenuItemBase.onActionProperty() |
ObjectProperty<EventHandler<Event>> |
MenuBase.onHiddenProperty() |
ObjectProperty<EventHandler<Event>> |
MenuBase.onHidingProperty() |
ObjectProperty<EventHandler<Event>> |
MenuBase.onShowingProperty() |
ObjectProperty<EventHandler<Event>> |
MenuBase.onShownProperty() |
Modifier and Type | Method and Description |
---|---|
void |
MenuItemBase.setOnAction(EventHandler<ActionEvent> value)
The action, which is invoked whenever the MenuItemBase is fired.
|
void |
MenuBase.setOnHidden(EventHandler<Event> value)
Called just after the menu has been hidden.
|
void |
MenuBase.setOnHiding(EventHandler<Event> value)
Called just prior to the menu being hidden.
|
void |
MenuBase.setOnShowing(EventHandler<Event> value)
Called just prior to the menu being shown, even if the menu has
no items to show.
|
void |
MenuBase.setOnShown(EventHandler<Event> value)
Called just after the menu is shown.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<KeyEvent> |
FXVK.getOnAction() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<KeyEvent>> |
FXVK.onActionProperty() |
Modifier and Type | Method and Description |
---|---|
void |
FXVK.setOnAction(EventHandler<KeyEvent> value) |
void |
CustomColorDialog.setOnHidden(EventHandler<WindowEvent> onHidden) |
Modifier and Type | Method and Description |
---|---|
EventHandler<ActionEvent> |
KeyFrame.getOnFinished()
Returns the
onFinished event handler of this KeyFrame . |
EventHandler<ActionEvent> |
Animation.getOnFinished() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<ActionEvent>> |
Animation.onFinishedProperty() |
Modifier and Type | Method and Description |
---|---|
B |
AnimationBuilder.onFinished(EventHandler<ActionEvent> x)
Deprecated.
Set the value of the
onFinished property for the instance constructed by this builder. |
void |
Animation.setOnFinished(EventHandler<ActionEvent> value) |
Constructor and Description |
---|
KeyFrame(Duration time,
EventHandler<ActionEvent> onFinished,
KeyValue... values)
Constructor of
KeyFrame |
KeyFrame(Duration time,
String name,
EventHandler<ActionEvent> onFinished,
Collection<KeyValue> values)
Constructor of
KeyFrame |
KeyFrame(Duration time,
String name,
EventHandler<ActionEvent> onFinished,
KeyValue... values)
Constructor of
KeyFrame |
Modifier and Type | Method and Description |
---|---|
EventHandler<WorkerStateEvent> |
Task.getOnCancelled()
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
EventHandler<WorkerStateEvent> |
Service.getOnCancelled()
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
EventHandler<WorkerStateEvent> |
Task.getOnFailed()
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
EventHandler<WorkerStateEvent> |
Service.getOnFailed()
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
EventHandler<WorkerStateEvent> |
Service.getOnReady()
The onReady event handler is called whenever the Task state transitions
to the READY state.
|
EventHandler<WorkerStateEvent> |
Task.getOnRunning()
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
EventHandler<WorkerStateEvent> |
Service.getOnRunning()
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
EventHandler<WorkerStateEvent> |
Task.getOnScheduled()
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
EventHandler<WorkerStateEvent> |
Service.getOnScheduled()
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
EventHandler<WorkerStateEvent> |
Task.getOnSucceeded()
The onSucceeded event handler is called whenever the Task state
transitions to the SUCCEEDED state.
|
EventHandler<WorkerStateEvent> |
Service.getOnSucceeded()
The onSucceeded event handler is called whenever the Task state
transitions to the SUCCEEDED state.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Task.onCancelledProperty()
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onCancelledProperty()
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Task.onFailedProperty()
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onFailedProperty()
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onReadyProperty()
The onReady event handler is called whenever the Task state transitions
to the READY state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Task.onRunningProperty()
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onRunningProperty()
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Task.onScheduledProperty()
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onScheduledProperty()
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Task.onSucceededProperty()
The onSucceeded event handler is called whenever the Task state
transitions to the SUCCEEDED state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onSucceededProperty()
The onSucceeded event handler is called whenever the Task state
transitions to the SUCCEEDED state.
|
Modifier and Type | Method and Description |
---|---|
<T extends Event> |
Task.addEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Registers an event filter to this task.
|
<T extends Event> |
Service.addEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Registers an event filter to this task.
|
<T extends Event> |
Task.addEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Registers an event handler to this task.
|
<T extends Event> |
Service.addEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Registers an event handler to this task.
|
<T extends Event> |
Task.removeEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Unregisters a previously registered event filter from this task.
|
<T extends Event> |
Service.removeEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Unregisters a previously registered event filter from this task.
|
<T extends Event> |
Task.removeEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Unregisters a previously registered event handler from this task.
|
<T extends Event> |
Service.removeEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Unregisters a previously registered event handler from this task.
|
protected <T extends Event> |
Task.setEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Sets the handler to use for this event type.
|
protected <T extends Event> |
Service.setEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Sets the handler to use for this event type.
|
void |
Task.setOnCancelled(EventHandler<WorkerStateEvent> value)
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
void |
Service.setOnCancelled(EventHandler<WorkerStateEvent> value)
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
void |
Task.setOnFailed(EventHandler<WorkerStateEvent> value)
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
void |
Service.setOnFailed(EventHandler<WorkerStateEvent> value)
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
void |
Service.setOnReady(EventHandler<WorkerStateEvent> value)
The onReady event handler is called whenever the Task state transitions
to the READY state.
|
void |
Task.setOnRunning(EventHandler<WorkerStateEvent> value)
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
void |
Service.setOnRunning(EventHandler<WorkerStateEvent> value)
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
void |
Task.setOnScheduled(EventHandler<WorkerStateEvent> value)
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
void |
Service.setOnScheduled(EventHandler<WorkerStateEvent> value)
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
void |
Task.setOnSucceeded(EventHandler<WorkerStateEvent> value)
The onSucceeded event handler is called whenever the Task state
transitions to the SUCCEEDED state.
|
void |
Service.setOnSucceeded(EventHandler<WorkerStateEvent> value)
The onSucceeded event handler is called whenever the Task state
transitions to the SUCCEEDED state.
|
Modifier and Type | Class and Description |
---|---|
class |
WeakEventHandler<T extends Event>
Used in event handler registration in place of its associated event handler.
|
Constructor and Description |
---|
WeakEventHandler(EventHandler<T> eventHandler)
Creates a new instance of
WeakEventHandler . |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<? super ContextMenuEvent>> |
Scene.onContextMenuRequestedProperty() |
ObjectProperty<EventHandler<? super ContextMenuEvent>> |
Node.onContextMenuRequestedProperty()
Defines a function to be called when a context menu
has been requested on this
Node . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onDragDetectedProperty() |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onDragDetectedProperty()
Defines a function to be called when drag gesture has been
detected.
|
ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragDoneProperty()
Defines a function to be called when this @{code Scene} is a
drag and drop gesture source after its data has
been dropped on a drop target.
|
ObjectProperty<EventHandler<? super DragEvent>> |
Node.onDragDoneProperty()
Defines a function to be called when this
Node is a
drag and drop gesture source after its data has
been dropped on a drop target. |
ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragDroppedProperty()
Defines a function to be called when the mouse button is released
on this
Scene during drag and drop gesture. |
ObjectProperty<EventHandler<? super DragEvent>> |
Node.onDragDroppedProperty()
Defines a function to be called when the mouse button is released
on this
Node during drag and drop gesture. |
ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragEnteredProperty()
Defines a function to be called when drag gesture
enters this
Scene . |
ObjectProperty<EventHandler<? super DragEvent>> |
Node.onDragEnteredProperty()
Defines a function to be called when drag gesture
enters this
Node . |
ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragExitedProperty()
Defines a function to be called when drag gesture
exits this
Scene . |
ObjectProperty<EventHandler<? super DragEvent>> |
Node.onDragExitedProperty()
Defines a function to be called when drag gesture
exits this
Node . |
ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragOverProperty()
Defines a function to be called when drag gesture progresses
within this
Scene . |
ObjectProperty<EventHandler<? super DragEvent>> |
Node.onDragOverProperty()
Defines a function to be called when drag gesture progresses within
this
Node . |
ObjectProperty<EventHandler<? super InputMethodEvent>> |
Scene.onInputMethodTextChangedProperty() |
ObjectProperty<EventHandler<? super InputMethodEvent>> |
Node.onInputMethodTextChangedProperty()
Defines a function to be called when this
Node
has input focus and the input method text has changed. |
ObjectProperty<EventHandler<? super KeyEvent>> |
Scene.onKeyPressedProperty() |
ObjectProperty<EventHandler<? super KeyEvent>> |
Node.onKeyPressedProperty()
Defines a function to be called when this
Node or its child
Node has input focus and a key has been pressed. |
ObjectProperty<EventHandler<? super KeyEvent>> |
Scene.onKeyReleasedProperty() |
ObjectProperty<EventHandler<? super KeyEvent>> |
Node.onKeyReleasedProperty()
Defines a function to be called when this
Node or its child
Node has input focus and a key has been released. |
ObjectProperty<EventHandler<? super KeyEvent>> |
Scene.onKeyTypedProperty() |
ObjectProperty<EventHandler<? super KeyEvent>> |
Node.onKeyTypedProperty()
Defines a function to be called when this
Node or its child
Node has input focus and a key has been typed. |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseClickedProperty() |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onMouseClickedProperty()
Defines a function to be called when a mouse button has been clicked
(pressed and released) on this
Node . |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
Scene.onMouseDragEnteredProperty() |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
Node.onMouseDragEnteredProperty()
Defines a function to be called when a full press-drag-release gesture
enters this
Node . |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
Scene.onMouseDragExitedProperty() |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
Node.onMouseDragExitedProperty()
Defines a function to be called when a full press-drag-release gesture
leaves this
Node . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseDraggedProperty() |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onMouseDraggedProperty()
Defines a function to be called when a mouse button is pressed
on this
Node and then dragged. |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
Scene.onMouseDragOverProperty() |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
Node.onMouseDragOverProperty()
Defines a function to be called when a full press-drag-release gesture
progresses within this
Node . |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
Scene.onMouseDragReleasedProperty() |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
Node.onMouseDragReleasedProperty()
Defines a function to be called when a full press-drag-release gesture
ends (by releasing mouse button) within this
Node . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseEnteredProperty() |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onMouseEnteredProperty()
Defines a function to be called when the mouse enters this
Node . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseExitedProperty() |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onMouseExitedProperty()
Defines a function to be called when the mouse exits this
Node . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseMovedProperty() |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onMouseMovedProperty()
Defines a function to be called when mouse cursor moves within
this
Node but no buttons have been pushed. |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMousePressedProperty() |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onMousePressedProperty()
Defines a function to be called when a mouse button
has been pressed on this
Node . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseReleasedProperty() |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onMouseReleasedProperty()
Defines a function to be called when a mouse button
has been released on this
Node . |
ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotateProperty() |
ObjectProperty<EventHandler<? super RotateEvent>> |
Node.onRotateProperty()
Defines a function to be called when user performs a rotation action.
|
ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotationFinishedProperty() |
ObjectProperty<EventHandler<? super RotateEvent>> |
Node.onRotationFinishedProperty()
Defines a function to be called when a rotation gesture ends.
|
ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotationStartedProperty() |
ObjectProperty<EventHandler<? super RotateEvent>> |
Node.onRotationStartedProperty()
Defines a function to be called when a rotation gesture is detected.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScrollFinishedProperty() |
ObjectProperty<EventHandler<? super ScrollEvent>> |
Node.onScrollFinishedProperty()
Defines a function to be called when a scrolling gesture ends.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScrollProperty() |
ObjectProperty<EventHandler<? super ScrollEvent>> |
Node.onScrollProperty()
Defines a function to be called when user performs a scrolling action.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScrollStartedProperty() |
ObjectProperty<EventHandler<? super ScrollEvent>> |
Node.onScrollStartedProperty()
Defines a function to be called when a scrolling gesture is detected.
|
ObjectProperty<EventHandler<? super SwipeEvent>> |
Scene.onSwipeDownProperty() |
ObjectProperty<EventHandler<? super SwipeEvent>> |
Node.onSwipeDownProperty()
Defines a function to be called when a downward swipe gesture
centered over this node happens.
|
ObjectProperty<EventHandler<? super SwipeEvent>> |
Scene.onSwipeLeftProperty() |
ObjectProperty<EventHandler<? super SwipeEvent>> |
Node.onSwipeLeftProperty()
Defines a function to be called when a leftward swipe gesture
centered over this node happens.
|
ObjectProperty<EventHandler<? super SwipeEvent>> |
Scene.onSwipeRightProperty() |
ObjectProperty<EventHandler<? super SwipeEvent>> |
Node.onSwipeRightProperty()
Defines a function to be called when an rightward swipe gesture
centered over this node happens.
|
ObjectProperty<EventHandler<? super SwipeEvent>> |
Scene.onSwipeUpProperty() |
ObjectProperty<EventHandler<? super SwipeEvent>> |
Node.onSwipeUpProperty()
Defines a function to be called when an upward swipe gesture
centered over this node happens.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchMovedProperty() |
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchMovedProperty()
Defines a function to be called when a touch point is moved.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchPressedProperty() |
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchPressedProperty()
Defines a function to be called when a new touch point is pressed.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchReleasedProperty() |
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchReleasedProperty()
Defines a function to be called when a touch point is released.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchStationaryProperty() |
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchStationaryProperty()
Defines a function to be called when a touch point stays pressed and
still.
|
ObjectProperty<EventHandler<? super ZoomEvent>> |
Scene.onZoomFinishedProperty() |
ObjectProperty<EventHandler<? super ZoomEvent>> |
Node.onZoomFinishedProperty()
Defines a function to be called when a zooming gesture ends.
|
ObjectProperty<EventHandler<? super ZoomEvent>> |
Scene.onZoomProperty() |
ObjectProperty<EventHandler<? super ZoomEvent>> |
Node.onZoomProperty()
Defines a function to be called when user performs a zooming action.
|
ObjectProperty<EventHandler<? super ZoomEvent>> |
Scene.onZoomStartedProperty() |
ObjectProperty<EventHandler<? super ZoomEvent>> |
Node.onZoomStartedProperty()
Defines a function to be called when a zooming gesture is detected.
|
Modifier and Type | Method and Description |
---|---|
<T extends Event> |
Scene.addEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Registers an event filter to this scene.
|
<T extends Event> |
Node.addEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Registers an event filter to this node.
|
<T extends Event> |
Scene.addEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Registers an event handler to this scene.
|
<T extends Event> |
Node.addEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Registers an event handler to this node.
|
B |
SceneBuilder.onContextMenuRequested(EventHandler<? super ContextMenuEvent> x)
Deprecated.
Set the value of the
onContextMenuRequested property for the instance constructed by this builder. |
B |
NodeBuilder.onContextMenuRequested(EventHandler<? super ContextMenuEvent> x)
Deprecated.
Set the value of the
onContextMenuRequested property for the instance constructed by this builder. |
B |
SceneBuilder.onDragDetected(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onDragDetected property for the instance constructed by this builder. |
B |
NodeBuilder.onDragDetected(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onDragDetected property for the instance constructed by this builder. |
B |
SceneBuilder.onDragDone(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragDone property for the instance constructed by this builder. |
B |
NodeBuilder.onDragDone(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragDone property for the instance constructed by this builder. |
B |
SceneBuilder.onDragDropped(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragDropped property for the instance constructed by this builder. |
B |
NodeBuilder.onDragDropped(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragDropped property for the instance constructed by this builder. |
B |
SceneBuilder.onDragEntered(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragEntered property for the instance constructed by this builder. |
B |
NodeBuilder.onDragEntered(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragEntered property for the instance constructed by this builder. |
B |
SceneBuilder.onDragExited(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragExited property for the instance constructed by this builder. |
B |
NodeBuilder.onDragExited(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragExited property for the instance constructed by this builder. |
B |
SceneBuilder.onDragOver(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragOver property for the instance constructed by this builder. |
B |
NodeBuilder.onDragOver(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragOver property for the instance constructed by this builder. |
B |
SceneBuilder.onInputMethodTextChanged(EventHandler<? super InputMethodEvent> x)
Deprecated.
Set the value of the
onInputMethodTextChanged property for the instance constructed by this builder. |
B |
NodeBuilder.onInputMethodTextChanged(EventHandler<? super InputMethodEvent> x)
Deprecated.
Set the value of the
onInputMethodTextChanged property for the instance constructed by this builder. |
B |
SceneBuilder.onKeyPressed(EventHandler<? super KeyEvent> x)
Deprecated.
Set the value of the
onKeyPressed property for the instance constructed by this builder. |
B |
NodeBuilder.onKeyPressed(EventHandler<? super KeyEvent> x)
Deprecated.
Set the value of the
onKeyPressed property for the instance constructed by this builder. |
B |
SceneBuilder.onKeyReleased(EventHandler<? super KeyEvent> x)
Deprecated.
Set the value of the
onKeyReleased property for the instance constructed by this builder. |
B |
NodeBuilder.onKeyReleased(EventHandler<? super KeyEvent> x)
Deprecated.
Set the value of the
onKeyReleased property for the instance constructed by this builder. |
B |
SceneBuilder.onKeyTyped(EventHandler<? super KeyEvent> x)
Deprecated.
Set the value of the
onKeyTyped property for the instance constructed by this builder. |
B |
NodeBuilder.onKeyTyped(EventHandler<? super KeyEvent> x)
Deprecated.
Set the value of the
onKeyTyped property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseClicked(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseClicked property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseClicked(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseClicked property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragEntered(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragEntered property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragEntered(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragEntered property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragExited(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragExited property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragExited(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragExited property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragged(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseDragged property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragged(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseDragged property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragOver(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragOver property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragOver(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragOver property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragReleased(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragReleased property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragReleased(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragReleased property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseEntered(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseEntered property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseEntered(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseEntered property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseExited(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseExited property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseExited(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseExited property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseMoved(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseMoved property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseMoved(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseMoved property for the instance constructed by this builder. |
B |
SceneBuilder.onMousePressed(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMousePressed property for the instance constructed by this builder. |
B |
NodeBuilder.onMousePressed(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMousePressed property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseReleased(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseReleased property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseReleased(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseReleased property for the instance constructed by this builder. |
B |
SceneBuilder.onRotate(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotate property for the instance constructed by this builder. |
B |
NodeBuilder.onRotate(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotate property for the instance constructed by this builder. |
B |
SceneBuilder.onRotationFinished(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotationFinished property for the instance constructed by this builder. |
B |
NodeBuilder.onRotationFinished(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotationFinished property for the instance constructed by this builder. |
B |
SceneBuilder.onRotationStarted(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotationStarted property for the instance constructed by this builder. |
B |
NodeBuilder.onRotationStarted(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotationStarted property for the instance constructed by this builder. |
B |
SceneBuilder.onScroll(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScroll property for the instance constructed by this builder. |
B |
NodeBuilder.onScroll(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScroll property for the instance constructed by this builder. |
B |
SceneBuilder.onScrollFinished(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScrollFinished property for the instance constructed by this builder. |
B |
NodeBuilder.onScrollFinished(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScrollFinished property for the instance constructed by this builder. |
B |
SceneBuilder.onScrollStarted(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScrollStarted property for the instance constructed by this builder. |
B |
NodeBuilder.onScrollStarted(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScrollStarted property for the instance constructed by this builder. |
B |
SceneBuilder.onSwipeDown(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeDown property for the instance constructed by this builder. |
B |
NodeBuilder.onSwipeDown(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeDown property for the instance constructed by this builder. |
B |
SceneBuilder.onSwipeLeft(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeLeft property for the instance constructed by this builder. |
B |
NodeBuilder.onSwipeLeft(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeLeft property for the instance constructed by this builder. |
B |
SceneBuilder.onSwipeRight(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeRight property for the instance constructed by this builder. |
B |
NodeBuilder.onSwipeRight(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeRight property for the instance constructed by this builder. |
B |
SceneBuilder.onSwipeUp(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeUp property for the instance constructed by this builder. |
B |
NodeBuilder.onSwipeUp(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeUp property for the instance constructed by this builder. |
B |
SceneBuilder.onTouchMoved(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchMoved property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchMoved(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchMoved property for the instance constructed by this builder. |
B |
SceneBuilder.onTouchPressed(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchPressed property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchPressed(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchPressed property for the instance constructed by this builder. |
B |
SceneBuilder.onTouchReleased(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchReleased property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchReleased(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchReleased property for the instance constructed by this builder. |
B |
SceneBuilder.onTouchStationary(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchStationary property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchStationary(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchStationary property for the instance constructed by this builder. |
B |
SceneBuilder.onZoom(EventHandler<? super ZoomEvent> x)
Deprecated.
Set the value of the
onZoom property for the instance constructed by this builder. |
B |
NodeBuilder.onZoom(EventHandler<? super ZoomEvent> x)
Deprecated.
Set the value of the
onZoom property for the instance constructed by this builder. |
B |
SceneBuilder.onZoomFinished(EventHandler<? super ZoomEvent> x)
Deprecated.
Set the value of the
onZoomFinished property for the instance constructed by this builder. |
B |
NodeBuilder.onZoomFinished(EventHandler<? super ZoomEvent> x)
Deprecated.
Set the value of the
onZoomFinished property for the instance constructed by this builder. |
B |
SceneBuilder.onZoomStarted(EventHandler<? super ZoomEvent> x)
Deprecated.
Set the value of the
onZoomStarted property for the instance constructed by this builder. |
B |
NodeBuilder.onZoomStarted(EventHandler<? super ZoomEvent> x)
Deprecated.
Set the value of the
onZoomStarted property for the instance constructed by this builder. |
<T extends Event> |
Scene.removeEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Unregisters a previously registered event filter from this scene.
|
<T extends Event> |
Node.removeEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Unregisters a previously registered event filter from this node.
|
<T extends Event> |
Scene.removeEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Unregisters a previously registered event handler from this scene.
|
<T extends Event> |
Node.removeEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Unregisters a previously registered event handler from this node.
|
protected <T extends Event> |
Scene.setEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Sets the handler to use for this event type.
|
protected <T extends Event> |
Node.setEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Sets the handler to use for this event type.
|
void |
Scene.setOnContextMenuRequested(EventHandler<? super ContextMenuEvent> value) |
void |
Node.setOnContextMenuRequested(EventHandler<? super ContextMenuEvent> value) |
void |
Scene.setOnDragDetected(EventHandler<? super MouseEvent> value) |
void |
Node.setOnDragDetected(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnDragDone(EventHandler<? super DragEvent> value) |
void |
Node.setOnDragDone(EventHandler<? super DragEvent> value) |
void |
Scene.setOnDragDropped(EventHandler<? super DragEvent> value) |
void |
Node.setOnDragDropped(EventHandler<? super DragEvent> value) |
void |
Scene.setOnDragEntered(EventHandler<? super DragEvent> value) |
void |
Node.setOnDragEntered(EventHandler<? super DragEvent> value) |
void |
Scene.setOnDragExited(EventHandler<? super DragEvent> value) |
void |
Node.setOnDragExited(EventHandler<? super DragEvent> value) |
void |
Scene.setOnDragOver(EventHandler<? super DragEvent> value) |
void |
Node.setOnDragOver(EventHandler<? super DragEvent> value) |
void |
Scene.setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value) |
void |
Node.setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value) |
void |
Scene.setOnKeyPressed(EventHandler<? super KeyEvent> value) |
void |
Node.setOnKeyPressed(EventHandler<? super KeyEvent> value) |
void |
Scene.setOnKeyReleased(EventHandler<? super KeyEvent> value) |
void |
Node.setOnKeyReleased(EventHandler<? super KeyEvent> value) |
void |
Scene.setOnKeyTyped(EventHandler<? super KeyEvent> value) |
void |
Node.setOnKeyTyped(EventHandler<? super KeyEvent> value) |
void |
Scene.setOnMouseClicked(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMouseClicked(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMouseDragEntered(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseDragEntered(EventHandler<? super MouseDragEvent> value) |
void |
Scene.setOnMouseDragExited(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseDragExited(EventHandler<? super MouseDragEvent> value) |
void |
Scene.setOnMouseDragged(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMouseDragged(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMouseDragOver(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseDragOver(EventHandler<? super MouseDragEvent> value) |
void |
Scene.setOnMouseDragReleased(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseDragReleased(EventHandler<? super MouseDragEvent> value) |
void |
Scene.setOnMouseEntered(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMouseEntered(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMouseExited(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMouseExited(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMouseMoved(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMouseMoved(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMousePressed(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMousePressed(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMouseReleased(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMouseReleased(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnRotate(EventHandler<? super RotateEvent> value) |
void |
Node.setOnRotate(EventHandler<? super RotateEvent> value) |
void |
Scene.setOnRotationFinished(EventHandler<? super RotateEvent> value) |
void |
Node.setOnRotationFinished(EventHandler<? super RotateEvent> value) |
void |
Scene.setOnRotationStarted(EventHandler<? super RotateEvent> value) |
void |
Node.setOnRotationStarted(EventHandler<? super RotateEvent> value) |
void |
Scene.setOnScroll(EventHandler<? super ScrollEvent> value) |
void |
Node.setOnScroll(EventHandler<? super ScrollEvent> value) |
void |
Scene.setOnScrollFinished(EventHandler<? super ScrollEvent> value) |
void |
Node.setOnScrollFinished(EventHandler<? super ScrollEvent> value) |
void |
Scene.setOnScrollStarted(EventHandler<? super ScrollEvent> value) |
void |
Node.setOnScrollStarted(EventHandler<? super ScrollEvent> value) |
void |
Scene.setOnSwipeDown(EventHandler<? super SwipeEvent> value) |
void |
Node.setOnSwipeDown(EventHandler<? super SwipeEvent> value) |
void |
Scene.setOnSwipeLeft(EventHandler<? super SwipeEvent> value) |
void |
Node.setOnSwipeLeft(EventHandler<? super SwipeEvent> value) |
void |
Scene.setOnSwipeRight(EventHandler<? super SwipeEvent> value) |
void |
Node.setOnSwipeRight(EventHandler<? super SwipeEvent> value) |
void |
Scene.setOnSwipeUp(EventHandler<? super SwipeEvent> value) |
void |
Node.setOnSwipeUp(EventHandler<? super SwipeEvent> value) |
void |
Scene.setOnTouchMoved(EventHandler<? super TouchEvent> value) |
void |
Node.setOnTouchMoved(EventHandler<? super TouchEvent> value) |
void |
Scene.setOnTouchPressed(EventHandler<? super TouchEvent> value) |
void |
Node.setOnTouchPressed(EventHandler<? super TouchEvent> value) |
void |
Scene.setOnTouchReleased(EventHandler<? super TouchEvent> value) |
void |
Node.setOnTouchReleased(EventHandler<? super TouchEvent> value) |
void |
Scene.setOnTouchStationary(EventHandler<? super TouchEvent> value) |
void |
Node.setOnTouchStationary(EventHandler<? super TouchEvent> value) |
void |
Scene.setOnZoom(EventHandler<? super ZoomEvent> value) |
void |
Node.setOnZoom(EventHandler<? super ZoomEvent> value) |
void |
Scene.setOnZoomFinished(EventHandler<? super ZoomEvent> value) |
void |
Node.setOnZoomFinished(EventHandler<? super ZoomEvent> value) |
void |
Scene.setOnZoomStarted(EventHandler<? super ZoomEvent> value) |
void |
Node.setOnZoomStarted(EventHandler<? super ZoomEvent> value) |
Modifier and Type | Method and Description |
---|---|
<E extends Event> |
TreeItem.addEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Registers an event handler to this TreeItem.
|
<E extends Event> |
TableColumnBase.addEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Registers an event handler to this table column.
|
<E extends Event> |
MenuItem.addEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Registers an event handler to this MenuItem.
|
<E extends Event> |
Menu.addEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Registers an event handler to this MenuItem.
|
B |
TextFieldBuilder.onAction(EventHandler<ActionEvent> x)
Deprecated.
Set the value of the
onAction property for the instance constructed by this builder. |
B |
MenuItemBuilder.onAction(EventHandler<ActionEvent> x)
Deprecated.
Set the value of the
onAction property for the instance constructed by this builder. |
B |
ContextMenuBuilder.onAction(EventHandler<ActionEvent> x)
Deprecated.
Set the value of the
onAction property for the instance constructed by this builder. |
B |
ComboBoxBaseBuilder.onAction(EventHandler<ActionEvent> x)
Deprecated.
Set the value of the
onAction property for the instance constructed by this builder. |
B |
ButtonBaseBuilder.onAction(EventHandler<ActionEvent> x)
Deprecated.
Set the value of the
onAction property for the instance constructed by this builder. |
B |
TabBuilder.onClosed(EventHandler<Event> x)
Deprecated.
Set the value of the
onClosed property for the instance constructed by this builder. |
B |
ListViewBuilder.onEditCancel(EventHandler<ListView.EditEvent<T>> x)
Deprecated.
Set the value of the
onEditCancel property for the instance constructed by this builder. |
B |
TableColumnBuilder.onEditCancel(EventHandler<TableColumn.CellEditEvent<S,T>> x)
Deprecated.
Set the value of the
onEditCancel property for the instance constructed by this builder. |
B |
TreeViewBuilder.onEditCancel(EventHandler<TreeView.EditEvent<T>> x)
Deprecated.
Set the value of the
onEditCancel property for the instance constructed by this builder. |
B |
ListViewBuilder.onEditCommit(EventHandler<ListView.EditEvent<T>> x)
Deprecated.
Set the value of the
onEditCommit property for the instance constructed by this builder. |
B |
TableColumnBuilder.onEditCommit(EventHandler<TableColumn.CellEditEvent<S,T>> x)
Deprecated.
Set the value of the
onEditCommit property for the instance constructed by this builder. |
B |
TreeViewBuilder.onEditCommit(EventHandler<TreeView.EditEvent<T>> x)
Deprecated.
Set the value of the
onEditCommit property for the instance constructed by this builder. |
B |
ListViewBuilder.onEditStart(EventHandler<ListView.EditEvent<T>> x)
Deprecated.
Set the value of the
onEditStart property for the instance constructed by this builder. |
B |
TableColumnBuilder.onEditStart(EventHandler<TableColumn.CellEditEvent<S,T>> x)
Deprecated.
Set the value of the
onEditStart property for the instance constructed by this builder. |
B |
TreeViewBuilder.onEditStart(EventHandler<TreeView.EditEvent<T>> x)
Deprecated.
Set the value of the
onEditStart property for the instance constructed by this builder. |
B |
MenuBuilder.onHidden(EventHandler<Event> x)
Deprecated.
Set the value of the
onHidden property for the instance constructed by this builder. |
B |
ComboBoxBaseBuilder.onHidden(EventHandler<Event> x)
Deprecated.
Set the value of the
onHidden property for the instance constructed by this builder. |
B |
MenuBuilder.onHiding(EventHandler<Event> x)
Deprecated.
Set the value of the
onHiding property for the instance constructed by this builder. |
B |
ComboBoxBaseBuilder.onHiding(EventHandler<Event> x)
Deprecated.
Set the value of the
onHiding property for the instance constructed by this builder. |
B |
MenuItemBuilder.onMenuValidation(EventHandler<Event> x)
Deprecated.
Set the value of the
onMenuValidation property for the instance constructed by this builder. |
B |
TabBuilder.onSelectionChanged(EventHandler<Event> x)
Deprecated.
Set the value of the
onSelectionChanged property for the instance constructed by this builder. |
B |
MenuBuilder.onShowing(EventHandler<Event> x)
Deprecated.
Set the value of the
onShowing property for the instance constructed by this builder. |
B |
ComboBoxBaseBuilder.onShowing(EventHandler<Event> x)
Deprecated.
Set the value of the
onShowing property for the instance constructed by this builder. |
B |
MenuBuilder.onShown(EventHandler<Event> x)
Deprecated.
Set the value of the
onShown property for the instance constructed by this builder. |
B |
ComboBoxBaseBuilder.onShown(EventHandler<Event> x)
Deprecated.
Set the value of the
onShown property for the instance constructed by this builder. |
<E extends Event> |
TreeItem.removeEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Unregisters a previously registered event handler from this TreeItem.
|
<E extends Event> |
TableColumnBase.removeEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Unregisters a previously registered event handler from this table column.
|
<E extends Event> |
MenuItem.removeEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Unregisters a previously registered event handler from this MenuItem.
|
<E extends Event> |
Menu.removeEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Unregisters a previously registered event handler from this MenuItem.
|
protected <E extends Event> |
Tab.setEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
void |
TextField.setOnAction(EventHandler<ActionEvent> value) |
void |
MenuItem.setOnAction(EventHandler<ActionEvent> value) |
void |
ContextMenu.setOnAction(EventHandler<ActionEvent> value) |
void |
ComboBoxBase.setOnAction(EventHandler<ActionEvent> value) |
void |
ChoiceBox.setOnAction(EventHandler<ActionEvent> value) |
void |
ButtonBase.setOnAction(EventHandler<ActionEvent> value) |
void |
Tab.setOnClosed(EventHandler<Event> value)
Defines a function to be called when the tab is closed.
|
void |
Dialog.setOnCloseRequest(EventHandler<DialogEvent> value) |
void |
Tab.setOnCloseRequest(EventHandler<Event> value) |
void |
ListView.setOnEditCancel(EventHandler<ListView.EditEvent<T>> value)
Sets the
EventHandler that will be called when the user cancels
an edit. |
void |
TableColumn.setOnEditCancel(EventHandler<TableColumn.CellEditEvent<S,T>> value) |
void |
TreeTableColumn.setOnEditCancel(EventHandler<TreeTableColumn.CellEditEvent<S,T>> value) |
void |
TreeView.setOnEditCancel(EventHandler<TreeView.EditEvent<T>> value)
Sets the
EventHandler that will be called when the user cancels
an edit. |
void |
ListView.setOnEditCommit(EventHandler<ListView.EditEvent<T>> value)
Sets the
EventHandler that will be called when the user has
completed their editing. |
void |
TableColumn.setOnEditCommit(EventHandler<TableColumn.CellEditEvent<S,T>> value) |
void |
TreeTableColumn.setOnEditCommit(EventHandler<TreeTableColumn.CellEditEvent<S,T>> value) |
void |
TreeView.setOnEditCommit(EventHandler<TreeView.EditEvent<T>> value)
Sets the
EventHandler that will be called when the user commits
an edit. |
void |
ListView.setOnEditStart(EventHandler<ListView.EditEvent<T>> value)
Sets the
EventHandler that will be called when the user begins
an edit. |
void |
TableColumn.setOnEditStart(EventHandler<TableColumn.CellEditEvent<S,T>> value) |
void |
TreeTableColumn.setOnEditStart(EventHandler<TreeTableColumn.CellEditEvent<S,T>> value) |
void |
TreeView.setOnEditStart(EventHandler<TreeView.EditEvent<T>> value)
Sets the
EventHandler that will be called when the user begins
an edit. |
void |
Dialog.setOnHidden(EventHandler<DialogEvent> value) |
void |
Menu.setOnHidden(EventHandler<Event> value) |
void |
ComboBoxBase.setOnHidden(EventHandler<Event> value) |
void |
ChoiceBox.setOnHidden(EventHandler<Event> value) |
void |
Dialog.setOnHiding(EventHandler<DialogEvent> value) |
void |
Menu.setOnHiding(EventHandler<Event> value) |
void |
ComboBoxBase.setOnHiding(EventHandler<Event> value) |
void |
ChoiceBox.setOnHiding(EventHandler<Event> value) |
void |
MenuItem.setOnMenuValidation(EventHandler<Event> value) |
void |
TreeView.setOnScrollTo(EventHandler<ScrollToEvent<Integer>> value) |
void |
TreeTableView.setOnScrollTo(EventHandler<ScrollToEvent<Integer>> value) |
void |
TableView.setOnScrollTo(EventHandler<ScrollToEvent<Integer>> value) |
void |
ListView.setOnScrollTo(EventHandler<ScrollToEvent<Integer>> value) |
void |
TableView.setOnScrollToColumn(EventHandler<ScrollToEvent<TableColumn<S,?>>> value) |
void |
TreeTableView.setOnScrollToColumn(EventHandler<ScrollToEvent<TreeTableColumn<S,?>>> value) |
void |
Tab.setOnSelectionChanged(EventHandler<Event> value)
Defines a function to be called when a selection changed has occurred on the tab.
|
void |
Dialog.setOnShowing(EventHandler<DialogEvent> value) |
void |
Menu.setOnShowing(EventHandler<Event> value) |
void |
ComboBoxBase.setOnShowing(EventHandler<Event> value) |
void |
ChoiceBox.setOnShowing(EventHandler<Event> value) |
void |
Dialog.setOnShown(EventHandler<DialogEvent> value) |
void |
Menu.setOnShown(EventHandler<Event> value) |
void |
ComboBoxBase.setOnShown(EventHandler<Event> value) |
void |
ChoiceBox.setOnShown(EventHandler<Event> value) |
void |
TableView.setOnSort(EventHandler<SortEvent<TableView<S>>> value) |
void |
TreeTableView.setOnSort(EventHandler<SortEvent<TreeTableView<S>>> value) |
Modifier and Type | Method and Description |
---|---|
EventHandler<MediaErrorEvent> |
MediaView.getOnError()
Retrieves the error event handler.
|
EventHandler<MediaMarkerEvent> |
MediaPlayer.getOnMarker()
Retrieves the marker event handler.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<MediaErrorEvent>> |
MediaView.onErrorProperty() |
ObjectProperty<EventHandler<MediaMarkerEvent>> |
MediaPlayer.onMarkerProperty() |
Modifier and Type | Method and Description |
---|---|
B |
MediaViewBuilder.onError(EventHandler<MediaErrorEvent> x)
Deprecated.
Set the value of the
onError property for the instance constructed by this builder. |
MediaPlayerBuilder |
MediaPlayerBuilder.onMarker(EventHandler<MediaMarkerEvent> x)
Deprecated.
Set the value of the
onMarker property for the instance constructed by this builder. |
void |
MediaView.setOnError(EventHandler<MediaErrorEvent> value)
Sets the error event handler.
|
void |
MediaPlayer.setOnMarker(EventHandler<MediaMarkerEvent> onMarker)
Sets the marker event handler.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<? super TransformChangedEvent> |
Transform.getOnTransformChanged()
Gets the onTransformChanged event handler.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<? super TransformChangedEvent>> |
Transform.onTransformChangedProperty()
The onTransformChanged event handler is called whenever the transform
changes any of its parameters.
|
Modifier and Type | Method and Description |
---|---|
<T extends Event> |
Transform.addEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Registers an event filter to this transform.
|
<T extends Event> |
Transform.addEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Registers an event handler to this transform.
|
<T extends Event> |
Transform.removeEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Unregisters a previously registered event filter from this transform.
|
<T extends Event> |
Transform.removeEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Unregisters a previously registered event handler from this transform.
|
void |
Transform.setOnTransformChanged(EventHandler<? super TransformChangedEvent> value)
Sets the onTransformChanged event handler which is called whenever
the transform changes any of its parameters.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<WebEvent<String>> |
WebEngine.getOnAlert()
Returns the JavaScript
alert handler. |
EventHandler<WebErrorEvent> |
WebEngine.getOnError() |
EventHandler<WebEvent<Rectangle2D>> |
WebEngine.getOnResized()
Returns the JavaScript window resize handler.
|
EventHandler<WebEvent<String>> |
WebEngine.getOnStatusChanged()
Returns the JavaScript status handler.
|
EventHandler<WebEvent<Boolean>> |
WebEngine.getOnVisibilityChanged()
Returns the JavaScript window visibility handler.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<WebEvent<String>>> |
WebEngine.onAlertProperty()
JavaScript
alert handler property. |
ObjectProperty<EventHandler<WebErrorEvent>> |
WebEngine.onErrorProperty() |
ObjectProperty<EventHandler<WebEvent<Rectangle2D>>> |
WebEngine.onResizedProperty()
JavaScript window resize handler property.
|
ObjectProperty<EventHandler<WebEvent<String>>> |
WebEngine.onStatusChangedProperty()
JavaScript status handler property.
|
ObjectProperty<EventHandler<WebEvent<Boolean>>> |
WebEngine.onVisibilityChangedProperty()
JavaScript window visibility handler property.
|
Modifier and Type | Method and Description |
---|---|
WebViewBuilder |
WebViewBuilder.onAlert(EventHandler<WebEvent<String>> value)
Deprecated.
|
WebEngineBuilder |
WebEngineBuilder.onAlert(EventHandler<WebEvent<String>> value)
Deprecated.
Sets the
onAlert
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.onResized(EventHandler<WebEvent<Rectangle2D>> value)
Deprecated.
|
WebEngineBuilder |
WebEngineBuilder.onResized(EventHandler<WebEvent<Rectangle2D>> value)
Deprecated.
Sets the
onResized
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.onStatusChanged(EventHandler<WebEvent<String>> value)
Deprecated.
Sets the
onStatusChanged
property for the engine
property of the instance constructed by this builder. |
WebEngineBuilder |
WebEngineBuilder.onStatusChanged(EventHandler<WebEvent<String>> value)
Deprecated.
Sets the
onStatusChanged
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.onVisibilityChanged(EventHandler<WebEvent<Boolean>> value)
Deprecated.
Sets the
onVisibilityChanged
property for the engine
property of the instance constructed by this builder. |
WebEngineBuilder |
WebEngineBuilder.onVisibilityChanged(EventHandler<WebEvent<Boolean>> value)
Deprecated.
Sets the
onVisibilityChanged
property for the instance constructed by this builder. |
void |
WebEngine.setOnAlert(EventHandler<WebEvent<String>> handler)
Sets the JavaScript
alert handler. |
void |
WebEngine.setOnError(EventHandler<WebErrorEvent> handler) |
void |
WebEngine.setOnResized(EventHandler<WebEvent<Rectangle2D>> handler)
Sets the JavaScript window resize handler.
|
void |
WebEngine.setOnStatusChanged(EventHandler<WebEvent<String>> handler)
Sets the JavaScript status handler.
|
void |
WebEngine.setOnVisibilityChanged(EventHandler<WebEvent<Boolean>> handler)
Sets the JavaScript window visibility handler.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<Event> |
PopupWindow.getOnAutoHide() |
EventHandler<WindowEvent> |
Window.getOnCloseRequest() |
EventHandler<WindowEvent> |
Window.getOnHidden() |
EventHandler<WindowEvent> |
Window.getOnHiding() |
EventHandler<WindowEvent> |
Window.getOnShowing() |
EventHandler<WindowEvent> |
Window.getOnShown() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<Event>> |
PopupWindow.onAutoHideProperty() |
ObjectProperty<EventHandler<WindowEvent>> |
Window.onCloseRequestProperty() |
ObjectProperty<EventHandler<WindowEvent>> |
Window.onHiddenProperty() |
ObjectProperty<EventHandler<WindowEvent>> |
Window.onHidingProperty() |
ObjectProperty<EventHandler<WindowEvent>> |
Window.onShowingProperty() |
ObjectProperty<EventHandler<WindowEvent>> |
Window.onShownProperty() |
Modifier and Type | Method and Description |
---|---|
<T extends Event> |
Window.addEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Registers an event filter to this node.
|
<T extends Event> |
Window.addEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Registers an event handler to this node.
|
B |
PopupWindowBuilder.onAutoHide(EventHandler<Event> x)
Deprecated.
Set the value of the
onAutoHide property for the instance constructed by this builder. |
B |
WindowBuilder.onCloseRequest(EventHandler<WindowEvent> x)
Deprecated.
Set the value of the
onCloseRequest property for the instance constructed by this builder. |
B |
WindowBuilder.onHidden(EventHandler<WindowEvent> x)
Deprecated.
Set the value of the
onHidden property for the instance constructed by this builder. |
B |
WindowBuilder.onHiding(EventHandler<WindowEvent> x)
Deprecated.
Set the value of the
onHiding property for the instance constructed by this builder. |
B |
WindowBuilder.onShowing(EventHandler<WindowEvent> x)
Deprecated.
Set the value of the
onShowing property for the instance constructed by this builder. |
B |
WindowBuilder.onShown(EventHandler<WindowEvent> x)
Deprecated.
Set the value of the
onShown property for the instance constructed by this builder. |
<T extends Event> |
Window.removeEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Unregisters a previously registered event filter from this node.
|
<T extends Event> |
Window.removeEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Unregisters a previously registered event handler from this node.
|
protected <T extends Event> |
Window.setEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Sets the handler to use for this event type.
|
void |
PopupWindow.setOnAutoHide(EventHandler<Event> value) |
void |
Window.setOnCloseRequest(EventHandler<WindowEvent> value) |
void |
Window.setOnHidden(EventHandler<WindowEvent> value) |
void |
Window.setOnHiding(EventHandler<WindowEvent> value) |
void |
Window.setOnShowing(EventHandler<WindowEvent> value) |
void |
Window.setOnShown(EventHandler<WindowEvent> value) |
Copyright © 2020. All rights reserved.