Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
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.fxml |
Contains classes for loading an object hierarchy from markup.
|
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.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 | Field and Description |
---|---|
private static EventHandler<ActionEvent> |
KeyFrame.DEFAULT_ON_FINISHED |
private static EventHandler<ActionEvent> |
Animation.DEFAULT_ON_FINISHED |
private EventHandler<ActionEvent> |
KeyFrame.onFinished |
private EventHandler<ActionEvent> |
AnimationBuilder.onFinished |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<EventHandler<ActionEvent>> |
Animation.onFinished
The action to be executed at the conclusion of this
Animation . |
Modifier and Type | Method and Description |
---|---|
EventHandler<ActionEvent> |
KeyFrame.getOnFinished()
Returns the
onFinished event handler of this KeyFrame . |
EventHandler<ActionEvent> |
Animation.getOnFinished()
Gets the value of the property onFinished.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<ActionEvent>> |
Animation.onFinishedProperty()
The action to be executed at the conclusion of this
Animation . |
Modifier and Type | Method and Description |
---|---|
B |
AnimationBuilder.onFinished(EventHandler<ActionEvent> x)
Set the value of the
onFinished property for the instance constructed by this builder. |
void |
Animation.setOnFinished(EventHandler<ActionEvent> value)
Sets the value of the property onFinished.
|
Constructor and Description |
---|
KeyFrame(Duration time,
EventHandler<ActionEvent> onFinished,
KeyValue... values)
Constructor of
KeyFrame |
KeyFrame(Duration time,
java.lang.String name,
EventHandler<ActionEvent> onFinished,
java.util.Collection<KeyValue> values)
Constructor of
KeyFrame |
KeyFrame(Duration time,
java.lang.String name,
EventHandler<ActionEvent> onFinished,
KeyValue... values)
Constructor of
KeyFrame |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onCancelled |
private ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onFailed |
private ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onReady |
private ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onRunning |
private ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onScheduled |
private ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onSucceeded |
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.
|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnCancelled() |
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.
|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnFailed() |
EventHandler<WorkerStateEvent> |
Service.getOnReady()
The onReady event handler is called whenever the Task state transitions
to the READY state.
|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnReady() |
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.
|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnRunning() |
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.
|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnScheduled() |
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.
|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnSucceeded() |
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.
|
(package private) ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onCancelledProperty() |
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.
|
(package private) ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onFailedProperty() |
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onReadyProperty()
The onReady event handler is called whenever the Task state transitions
to the READY state.
|
(package private) ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onReadyProperty() |
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.
|
(package private) ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onRunningProperty() |
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.
|
(package private) ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onScheduledProperty() |
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.
|
(package private) ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onSucceededProperty() |
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.
|
(package private) <T extends Event> |
EventHelper.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.
|
(package private) <T extends Event> |
EventHelper.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.
|
(package private) <T extends Event> |
EventHelper.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.
|
(package private) <T extends Event> |
EventHelper.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.
|
(package private) <T extends Event> |
EventHelper.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.
|
(package private) void |
EventHelper.setOnCancelled(EventHandler<WorkerStateEvent> value) |
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.
|
(package private) void |
EventHelper.setOnFailed(EventHandler<WorkerStateEvent> value) |
void |
Service.setOnReady(EventHandler<WorkerStateEvent> value)
The onReady event handler is called whenever the Task state transitions
to the READY state.
|
(package private) void |
EventHelper.setOnReady(EventHandler<WorkerStateEvent> value) |
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.
|
(package private) void |
EventHelper.setOnRunning(EventHandler<WorkerStateEvent> value) |
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.
|
(package private) void |
EventHelper.setOnScheduled(EventHandler<WorkerStateEvent> value) |
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.
|
(package private) void |
EventHelper.setOnSucceeded(EventHandler<WorkerStateEvent> value) |
Modifier and Type | Field and Description |
---|---|
EventHandler<com.sun.javafx.fxml.ObservableListChangeEvent<?>> |
FXMLLoader.ObservableListChangeAdapter.handler |
EventHandler<com.sun.javafx.fxml.ObservableMapChangeEvent<?,?>> |
FXMLLoader.ObservableMapChangeAdapter.handler |
EventHandler<com.sun.javafx.fxml.PropertyChangeEvent<?>> |
FXMLLoader.PropertyChangeAdapter.handler |
Modifier and Type | Method and Description |
---|---|
private void |
FXMLLoader.Element.addEventHandler(FXMLLoader.Attribute attribute,
EventHandler<? extends Event> eventHandler) |
Constructor and Description |
---|
FXMLLoader.ObservableListChangeAdapter(ObservableList<java.lang.Object> source,
EventHandler<com.sun.javafx.fxml.ObservableListChangeEvent<?>> handler) |
FXMLLoader.ObservableMapChangeAdapter(ObservableMap<java.lang.Object,java.lang.Object> source,
EventHandler<com.sun.javafx.fxml.ObservableMapChangeEvent<?,?>> handler) |
FXMLLoader.PropertyChangeAdapter(java.lang.Object source,
EventHandler<com.sun.javafx.fxml.PropertyChangeEvent<?>> handler) |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<EventHandler<? super ContextMenuEvent>> |
Scene.onContextMenuRequested
Defines a function to be called when a mouse button has been clicked
(pressed and released) on this
Scene . |
private ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onDragDetected
Defines a function to be called when drag gesture has been
detected.
|
private ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragDone |
private ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragDropped |
private ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragEntered
*
Drag and Drop Handling *
*
|
private ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragExited |
private ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragOver |
private ObjectProperty<EventHandler<? super InputMethodEvent>> |
Scene.onInputMethodTextChanged
Defines a function to be called when this
Node
has input focus and the input method text has changed. |
private ObjectProperty<EventHandler<? super KeyEvent>> |
Scene.onKeyPressed
Defines a function to be called when some
Node of this
Scene has input focus and a key has been pressed. |
private ObjectProperty<EventHandler<? super KeyEvent>> |
Scene.onKeyReleased
Defines a function to be called when some
Node of this
Scene has input focus and a key has been released. |
private ObjectProperty<EventHandler<? super KeyEvent>> |
Scene.onKeyTyped
Defines a function to be called when some
Node of this
Scene has input focus and a key has been typed. |
private ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseClicked
Defines a function to be called when a mouse button has been clicked
(pressed and released) on this
Scene . |
private ObjectProperty<EventHandler<? super MouseDragEvent>> |
Scene.onMouseDragEntered
Defines a function to be called when a full press-drag-release gesture
enters this
Scene . |
private ObjectProperty<EventHandler<? super MouseDragEvent>> |
Scene.onMouseDragExited
Defines a function to be called when a full press-drag-release gesture
exits this
Scene . |
private ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseDragged
Defines a function to be called when a mouse button is pressed
on this
Scene and then dragged. |
private ObjectProperty<EventHandler<? super MouseDragEvent>> |
Scene.onMouseDragOver
Defines a function to be called when a full press-drag-release gesture
progresses within this
Scene . |
private ObjectProperty<EventHandler<? super MouseDragEvent>> |
Scene.onMouseDragReleased
Defines a function to be called when a full press-drag-release gesture
ends within this
Scene . |
private ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseEntered
Defines a function to be called when the mouse enters this
Scene . |
private ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseExited
Defines a function to be called when the mouse exits this
Scene . |
private ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseMoved
Defines a function to be called when mouse cursor moves within
this
Scene but no buttons have been pushed. |
private ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMousePressed
Defines a function to be called when a mouse button
has been pressed on this
Scene . |
private ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseReleased
Defines a function to be called when a mouse button
has been released on this
Scene . |
private ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotate
Defines a function to be called when user performs a rotating action.
|
private ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotationFinished
Defines a function to be called when a rotating gesture ends.
|
private ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotationStarted
Defines a function to be called when a rotating gesture is detected.
|
private ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScroll
Defines a function to be called when user performs a scrolling action.
|
private ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScrollFinished
Defines a function to be called when a scrolling gesture ends.
|
private ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScrollStarted
Defines a function to be called when a scrolling gesture is detected.
|
private ObjectProperty<EventHandler<? super SwipeEvent>> |
Scene.onSwipeDown
Defines a function to be called when an downward swipe gesture
happens in this scene.
|
private ObjectProperty<EventHandler<? super SwipeEvent>> |
Scene.onSwipeLeft
Defines a function to be called when an leftward swipe gesture
happens in this scene.
|
private ObjectProperty<EventHandler<? super SwipeEvent>> |
Scene.onSwipeRight
Defines a function to be called when an rightward swipe gesture
happens in this scene.
|
private ObjectProperty<EventHandler<? super SwipeEvent>> |
Scene.onSwipeUp
Defines a function to be called when an upward swipe gesture
happens in this scene.
|
private ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchMoved
Defines a function to be called when a touch point is moved.
|
private ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchPressed
Defines a function to be called when a new touch point is pressed.
|
private ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchReleased
Defines a function to be called when a new touch point is pressed.
|
private ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchStationary
Defines a function to be called when a touch point stays pressed and
still.
|
private ObjectProperty<EventHandler<? super ZoomEvent>> |
Scene.onZoom
Defines a function to be called when user performs a zooming action.
|
private ObjectProperty<EventHandler<? super ZoomEvent>> |
Scene.onZoomFinished
Defines a function to be called when a zooming gesture ends.
|
private ObjectProperty<EventHandler<? super ZoomEvent>> |
Scene.onZoomStarted
Defines a function to be called when a zooming gesture is detected.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<? super ContextMenuEvent> |
Scene.getOnContextMenuRequested()
Gets the value of the property onContextMenuRequested.
|
EventHandler<? super ContextMenuEvent> |
Node.getOnContextMenuRequested()
Gets the value of the property onContextMenuRequested.
|
EventHandler<? super MouseEvent> |
Scene.getOnDragDetected()
Gets the value of the property onDragDetected.
|
EventHandler<? super MouseEvent> |
Node.getOnDragDetected()
Gets the value of the property onDragDetected.
|
EventHandler<? super DragEvent> |
Scene.getOnDragDone()
Gets the value of the property onDragDone.
|
EventHandler<? super DragEvent> |
Node.getOnDragDone()
Gets the value of the property onDragDone.
|
EventHandler<? super DragEvent> |
Scene.getOnDragDropped()
Gets the value of the property onDragDropped.
|
EventHandler<? super DragEvent> |
Node.getOnDragDropped()
Gets the value of the property onDragDropped.
|
EventHandler<? super DragEvent> |
Scene.getOnDragEntered()
Gets the value of the property onDragEntered.
|
EventHandler<? super DragEvent> |
Node.getOnDragEntered()
Gets the value of the property onDragEntered.
|
EventHandler<? super DragEvent> |
Scene.getOnDragExited()
Gets the value of the property onDragExited.
|
EventHandler<? super DragEvent> |
Node.getOnDragExited()
Gets the value of the property onDragExited.
|
EventHandler<? super DragEvent> |
Scene.getOnDragOver()
Gets the value of the property onDragOver.
|
EventHandler<? super DragEvent> |
Node.getOnDragOver()
Gets the value of the property onDragOver.
|
EventHandler<? super InputMethodEvent> |
Scene.getOnInputMethodTextChanged()
Gets the value of the property onInputMethodTextChanged.
|
EventHandler<? super InputMethodEvent> |
Node.getOnInputMethodTextChanged()
Gets the value of the property onInputMethodTextChanged.
|
EventHandler<? super KeyEvent> |
Scene.getOnKeyPressed()
Gets the value of the property onKeyPressed.
|
EventHandler<? super KeyEvent> |
Node.getOnKeyPressed()
Gets the value of the property onKeyPressed.
|
EventHandler<? super KeyEvent> |
Scene.getOnKeyReleased()
Gets the value of the property onKeyReleased.
|
EventHandler<? super KeyEvent> |
Node.getOnKeyReleased()
Gets the value of the property onKeyReleased.
|
EventHandler<? super KeyEvent> |
Scene.getOnKeyTyped()
Gets the value of the property onKeyTyped.
|
EventHandler<? super KeyEvent> |
Node.getOnKeyTyped()
Gets the value of the property onKeyTyped.
|
EventHandler<? super MouseEvent> |
Scene.getOnMouseClicked()
Gets the value of the property onMouseClicked.
|
EventHandler<? super MouseEvent> |
Node.getOnMouseClicked()
Gets the value of the property onMouseClicked.
|
EventHandler<? super MouseDragEvent> |
Scene.getOnMouseDragEntered()
Gets the value of the property onMouseDragEntered.
|
EventHandler<? super MouseDragEvent> |
Node.getOnMouseDragEntered()
Gets the value of the property onMouseDragEntered.
|
EventHandler<? super MouseDragEvent> |
Scene.getOnMouseDragExited()
Gets the value of the property onMouseDragExited.
|
EventHandler<? super MouseDragEvent> |
Node.getOnMouseDragExited()
Gets the value of the property onMouseDragExited.
|
EventHandler<? super MouseEvent> |
Scene.getOnMouseDragged()
Gets the value of the property onMouseDragged.
|
EventHandler<? super MouseEvent> |
Node.getOnMouseDragged()
Gets the value of the property onMouseDragged.
|
EventHandler<? super MouseDragEvent> |
Scene.getOnMouseDragOver()
Gets the value of the property onMouseDragOver.
|
EventHandler<? super MouseDragEvent> |
Node.getOnMouseDragOver()
Gets the value of the property onMouseDragOver.
|
EventHandler<? super MouseDragEvent> |
Scene.getOnMouseDragReleased()
Gets the value of the property onMouseDragReleased.
|
EventHandler<? super MouseDragEvent> |
Node.getOnMouseDragReleased()
Gets the value of the property onMouseDragReleased.
|
EventHandler<? super MouseEvent> |
Scene.getOnMouseEntered()
Gets the value of the property onMouseEntered.
|
EventHandler<? super MouseEvent> |
Node.getOnMouseEntered()
Gets the value of the property onMouseEntered.
|
EventHandler<? super MouseEvent> |
Scene.getOnMouseExited()
Gets the value of the property onMouseExited.
|
EventHandler<? super MouseEvent> |
Node.getOnMouseExited()
Gets the value of the property onMouseExited.
|
EventHandler<? super MouseEvent> |
Scene.getOnMouseMoved()
Gets the value of the property onMouseMoved.
|
EventHandler<? super MouseEvent> |
Node.getOnMouseMoved()
Gets the value of the property onMouseMoved.
|
EventHandler<? super MouseEvent> |
Scene.getOnMousePressed()
Gets the value of the property onMousePressed.
|
EventHandler<? super MouseEvent> |
Node.getOnMousePressed()
Gets the value of the property onMousePressed.
|
EventHandler<? super MouseEvent> |
Scene.getOnMouseReleased()
Gets the value of the property onMouseReleased.
|
EventHandler<? super MouseEvent> |
Node.getOnMouseReleased()
Gets the value of the property onMouseReleased.
|
EventHandler<? super RotateEvent> |
Scene.getOnRotate()
Gets the value of the property onRotate.
|
EventHandler<? super RotateEvent> |
Node.getOnRotate()
Gets the value of the property onRotate.
|
EventHandler<? super RotateEvent> |
Scene.getOnRotationFinished()
Gets the value of the property onRotationFinished.
|
EventHandler<? super RotateEvent> |
Node.getOnRotationFinished()
Gets the value of the property onRotationFinished.
|
EventHandler<? super RotateEvent> |
Scene.getOnRotationStarted()
Gets the value of the property onRotationStarted.
|
EventHandler<? super RotateEvent> |
Node.getOnRotationStarted()
Gets the value of the property onRotationStarted.
|
EventHandler<? super ScrollEvent> |
Scene.getOnScroll()
Gets the value of the property onScroll.
|
EventHandler<? super ScrollEvent> |
Node.getOnScroll()
Gets the value of the property onScroll.
|
EventHandler<? super ScrollEvent> |
Scene.getOnScrollFinished()
Gets the value of the property onScrollFinished.
|
EventHandler<? super ScrollEvent> |
Node.getOnScrollFinished()
Gets the value of the property onScrollFinished.
|
EventHandler<? super ScrollEvent> |
Scene.getOnScrollStarted()
Gets the value of the property onScrollStarted.
|
EventHandler<? super ScrollEvent> |
Node.getOnScrollStarted()
Gets the value of the property onScrollStarted.
|
EventHandler<? super SwipeEvent> |
Scene.getOnSwipeDown()
Gets the value of the property onSwipeDown.
|
EventHandler<? super SwipeEvent> |
Node.getOnSwipeDown()
Gets the value of the property onSwipeDown.
|
EventHandler<? super SwipeEvent> |
Scene.getOnSwipeLeft()
Gets the value of the property onSwipeLeft.
|
EventHandler<? super SwipeEvent> |
Node.getOnSwipeLeft()
Gets the value of the property onSwipeLeft.
|
EventHandler<? super SwipeEvent> |
Scene.getOnSwipeRight()
Gets the value of the property onSwipeRight.
|
EventHandler<? super SwipeEvent> |
Node.getOnSwipeRight()
Gets the value of the property onSwipeRight.
|
EventHandler<? super SwipeEvent> |
Scene.getOnSwipeUp()
Gets the value of the property onSwipeUp.
|
EventHandler<? super SwipeEvent> |
Node.getOnSwipeUp()
Gets the value of the property onSwipeUp.
|
EventHandler<? super TouchEvent> |
Scene.getOnTouchMoved()
Gets the value of the property onTouchMoved.
|
EventHandler<? super TouchEvent> |
Node.getOnTouchMoved()
Gets the value of the property onTouchMoved.
|
EventHandler<? super TouchEvent> |
Scene.getOnTouchPressed()
Gets the value of the property onTouchPressed.
|
EventHandler<? super TouchEvent> |
Node.getOnTouchPressed()
Gets the value of the property onTouchPressed.
|
EventHandler<? super TouchEvent> |
Scene.getOnTouchReleased()
Gets the value of the property onTouchReleased.
|
EventHandler<? super TouchEvent> |
Node.getOnTouchReleased()
Gets the value of the property onTouchReleased.
|
EventHandler<? super TouchEvent> |
Scene.getOnTouchStationary()
Gets the value of the property onTouchStationary.
|
EventHandler<? super TouchEvent> |
Node.getOnTouchStationary()
Gets the value of the property onTouchStationary.
|
EventHandler<? super ZoomEvent> |
Scene.getOnZoom()
Gets the value of the property onZoom.
|
EventHandler<? super ZoomEvent> |
Node.getOnZoom()
Gets the value of the property onZoom.
|
EventHandler<? super ZoomEvent> |
Scene.getOnZoomFinished()
Gets the value of the property onZoomFinished.
|
EventHandler<? super ZoomEvent> |
Node.getOnZoomFinished()
Gets the value of the property onZoomFinished.
|
EventHandler<? super ZoomEvent> |
Scene.getOnZoomStarted()
Gets the value of the property onZoomStarted.
|
EventHandler<? super ZoomEvent> |
Node.getOnZoomStarted()
Gets the value of the property onZoomStarted.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<? super ContextMenuEvent>> |
Scene.onContextMenuRequestedProperty()
Defines a function to be called when a mouse button has been clicked
(pressed and released) on this
Scene . |
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()
Defines a function to be called when drag gesture has been
detected.
|
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()
Defines a function to be called when this
Node
has input focus and the input method text has changed. |
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()
Defines a function to be called when some
Node of this
Scene has input focus and a key has been pressed. |
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()
Defines a function to be called when some
Node of this
Scene has input focus and a key has been released. |
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()
Defines a function to be called when some
Node of this
Scene has input focus and a key has been typed. |
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()
Defines a function to be called when a mouse button has been clicked
(pressed and released) on this
Scene . |
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()
Defines a function to be called when a full press-drag-release gesture
enters this
Scene . |
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()
Defines a function to be called when a full press-drag-release gesture
exits this
Scene . |
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()
Defines a function to be called when a mouse button is pressed
on this
Scene and then dragged. |
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()
Defines a function to be called when a full press-drag-release gesture
progresses within this
Scene . |
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()
Defines a function to be called when a full press-drag-release gesture
ends within this
Scene . |
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()
Defines a function to be called when the mouse enters this
Scene . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onMouseEnteredProperty()
Defines a function to be called when the mouse enters this
Node . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseExitedProperty()
Defines a function to be called when the mouse exits this
Scene . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onMouseExitedProperty()
Defines a function to be called when the mouse exits this
Node . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseMovedProperty()
Defines a function to be called when mouse cursor moves within
this
Scene but no buttons have been pushed. |
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()
Defines a function to be called when a mouse button
has been pressed on this
Scene . |
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()
Defines a function to be called when a mouse button
has been released on this
Scene . |
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()
Defines a function to be called when user performs a rotating action.
|
ObjectProperty<EventHandler<? super RotateEvent>> |
Node.onRotateProperty()
Defines a function to be called when user performs a rotation action.
|
ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotationFinishedProperty()
Defines a function to be called when a rotating gesture ends.
|
ObjectProperty<EventHandler<? super RotateEvent>> |
Node.onRotationFinishedProperty()
Defines a function to be called when a rotation gesture ends.
|
ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotationStartedProperty()
Defines a function to be called when a rotating gesture is detected.
|
ObjectProperty<EventHandler<? super RotateEvent>> |
Node.onRotationStartedProperty()
Defines a function to be called when a rotation gesture is detected.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScrollFinishedProperty()
Defines a function to be called when a scrolling gesture ends.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Node.onScrollFinishedProperty()
Defines a function to be called when a scrolling gesture ends.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScrollProperty()
Defines a function to be called when user performs a scrolling action.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Node.onScrollProperty()
Defines a function to be called when user performs a scrolling action.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScrollStartedProperty()
Defines a function to be called when a scrolling gesture is detected.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Node.onScrollStartedProperty()
Defines a function to be called when a scrolling gesture is detected.
|
ObjectProperty<EventHandler<? super SwipeEvent>> |
Scene.onSwipeDownProperty()
Defines a function to be called when an downward swipe gesture
happens in this scene.
|
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()
Defines a function to be called when an leftward swipe gesture
happens in this scene.
|
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()
Defines a function to be called when an rightward swipe gesture
happens in this scene.
|
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()
Defines a function to be called when an upward swipe gesture
happens in this scene.
|
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()
Defines a function to be called when a touch point is moved.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchMovedProperty()
Defines a function to be called when a touch point is moved.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchPressedProperty()
Defines a function to be called when a new touch point is pressed.
|
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()
Defines a function to be called when a new touch point is pressed.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchReleasedProperty()
Defines a function to be called when a touch point is released.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchStationaryProperty()
Defines a function to be called when a touch point stays pressed and
still.
|
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()
Defines a function to be called when a zooming gesture ends.
|
ObjectProperty<EventHandler<? super ZoomEvent>> |
Node.onZoomFinishedProperty()
Defines a function to be called when a zooming gesture ends.
|
ObjectProperty<EventHandler<? super ZoomEvent>> |
Scene.onZoomProperty()
Defines a function to be called when user performs a zooming action.
|
ObjectProperty<EventHandler<? super ZoomEvent>> |
Node.onZoomProperty()
Defines a function to be called when user performs a zooming action.
|
ObjectProperty<EventHandler<? super ZoomEvent>> |
Scene.onZoomStartedProperty()
Defines a function to be called when a zooming gesture is detected.
|
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)
Set the value of the
onContextMenuRequested property for the instance constructed by this builder. |
B |
NodeBuilder.onContextMenuRequested(EventHandler<? super ContextMenuEvent> x)
Set the value of the
onContextMenuRequested property for the instance constructed by this builder. |
B |
SceneBuilder.onDragDetected(EventHandler<? super MouseEvent> x)
Set the value of the
onDragDetected property for the instance constructed by this builder. |
B |
NodeBuilder.onDragDetected(EventHandler<? super MouseEvent> x)
Set the value of the
onDragDetected property for the instance constructed by this builder. |
B |
SceneBuilder.onDragDone(EventHandler<? super DragEvent> x)
Set the value of the
onDragDone property for the instance constructed by this builder. |
B |
NodeBuilder.onDragDone(EventHandler<? super DragEvent> x)
Set the value of the
onDragDone property for the instance constructed by this builder. |
B |
SceneBuilder.onDragDropped(EventHandler<? super DragEvent> x)
Set the value of the
onDragDropped property for the instance constructed by this builder. |
B |
NodeBuilder.onDragDropped(EventHandler<? super DragEvent> x)
Set the value of the
onDragDropped property for the instance constructed by this builder. |
B |
SceneBuilder.onDragEntered(EventHandler<? super DragEvent> x)
Set the value of the
onDragEntered property for the instance constructed by this builder. |
B |
NodeBuilder.onDragEntered(EventHandler<? super DragEvent> x)
Set the value of the
onDragEntered property for the instance constructed by this builder. |
B |
SceneBuilder.onDragExited(EventHandler<? super DragEvent> x)
Set the value of the
onDragExited property for the instance constructed by this builder. |
B |
NodeBuilder.onDragExited(EventHandler<? super DragEvent> x)
Set the value of the
onDragExited property for the instance constructed by this builder. |
B |
SceneBuilder.onDragOver(EventHandler<? super DragEvent> x)
Set the value of the
onDragOver property for the instance constructed by this builder. |
B |
NodeBuilder.onDragOver(EventHandler<? super DragEvent> x)
Set the value of the
onDragOver property for the instance constructed by this builder. |
B |
SceneBuilder.onInputMethodTextChanged(EventHandler<? super InputMethodEvent> x)
Set the value of the
onInputMethodTextChanged property for the instance constructed by this builder. |
B |
NodeBuilder.onInputMethodTextChanged(EventHandler<? super InputMethodEvent> x)
Set the value of the
onInputMethodTextChanged property for the instance constructed by this builder. |
B |
SceneBuilder.onKeyPressed(EventHandler<? super KeyEvent> x)
Set the value of the
onKeyPressed property for the instance constructed by this builder. |
B |
NodeBuilder.onKeyPressed(EventHandler<? super KeyEvent> x)
Set the value of the
onKeyPressed property for the instance constructed by this builder. |
B |
SceneBuilder.onKeyReleased(EventHandler<? super KeyEvent> x)
Set the value of the
onKeyReleased property for the instance constructed by this builder. |
B |
NodeBuilder.onKeyReleased(EventHandler<? super KeyEvent> x)
Set the value of the
onKeyReleased property for the instance constructed by this builder. |
B |
SceneBuilder.onKeyTyped(EventHandler<? super KeyEvent> x)
Set the value of the
onKeyTyped property for the instance constructed by this builder. |
B |
NodeBuilder.onKeyTyped(EventHandler<? super KeyEvent> x)
Set the value of the
onKeyTyped property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseClicked(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseClicked property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseClicked(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseClicked property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragEntered(EventHandler<? super MouseDragEvent> x)
Set the value of the
onMouseDragEntered property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragEntered(EventHandler<? super MouseDragEvent> x)
Set the value of the
onMouseDragEntered property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragExited(EventHandler<? super MouseDragEvent> x)
Set the value of the
onMouseDragExited property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragExited(EventHandler<? super MouseDragEvent> x)
Set the value of the
onMouseDragExited property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragged(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseDragged property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragged(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseDragged property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragOver(EventHandler<? super MouseDragEvent> x)
Set the value of the
onMouseDragOver property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragOver(EventHandler<? super MouseDragEvent> x)
Set the value of the
onMouseDragOver property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragReleased(EventHandler<? super MouseDragEvent> x)
Set the value of the
onMouseDragReleased property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragReleased(EventHandler<? super MouseDragEvent> x)
Set the value of the
onMouseDragReleased property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseEntered(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseEntered property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseEntered(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseEntered property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseExited(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseExited property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseExited(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseExited property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseMoved(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseMoved property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseMoved(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseMoved property for the instance constructed by this builder. |
B |
SceneBuilder.onMousePressed(EventHandler<? super MouseEvent> x)
Set the value of the
onMousePressed property for the instance constructed by this builder. |
B |
NodeBuilder.onMousePressed(EventHandler<? super MouseEvent> x)
Set the value of the
onMousePressed property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseReleased(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseReleased property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseReleased(EventHandler<? super MouseEvent> x)
Set the value of the
onMouseReleased property for the instance constructed by this builder. |
B |
SceneBuilder.onRotate(EventHandler<? super RotateEvent> x)
Set the value of the
onRotate property for the instance constructed by this builder. |
B |
NodeBuilder.onRotate(EventHandler<? super RotateEvent> x)
Set the value of the
onRotate property for the instance constructed by this builder. |
B |
SceneBuilder.onRotationFinished(EventHandler<? super RotateEvent> x)
Set the value of the
onRotationFinished property for the instance constructed by this builder. |
B |
NodeBuilder.onRotationFinished(EventHandler<? super RotateEvent> x)
Set the value of the
onRotationFinished property for the instance constructed by this builder. |
B |
SceneBuilder.onRotationStarted(EventHandler<? super RotateEvent> x)
Set the value of the
onRotationStarted property for the instance constructed by this builder. |
B |
NodeBuilder.onRotationStarted(EventHandler<? super RotateEvent> x)
Set the value of the
onRotationStarted property for the instance constructed by this builder. |
B |
SceneBuilder.onScroll(EventHandler<? super ScrollEvent> x)
Set the value of the
onScroll property for the instance constructed by this builder. |
B |
NodeBuilder.onScroll(EventHandler<? super ScrollEvent> x)
Set the value of the
onScroll property for the instance constructed by this builder. |
B |
SceneBuilder.onScrollFinished(EventHandler<? super ScrollEvent> x)
Set the value of the
onScrollFinished property for the instance constructed by this builder. |
B |
NodeBuilder.onScrollFinished(EventHandler<? super ScrollEvent> x)
Set the value of the
onScrollFinished property for the instance constructed by this builder. |
B |
SceneBuilder.onScrollStarted(EventHandler<? super ScrollEvent> x)
Set the value of the
onScrollStarted property for the instance constructed by this builder. |
B |
NodeBuilder.onScrollStarted(EventHandler<? super ScrollEvent> x)
Set the value of the
onScrollStarted property for the instance constructed by this builder. |
B |
SceneBuilder.onSwipeDown(EventHandler<? super SwipeEvent> x)
Set the value of the
onSwipeDown property for the instance constructed by this builder. |
B |
NodeBuilder.onSwipeDown(EventHandler<? super SwipeEvent> x)
Set the value of the
onSwipeDown property for the instance constructed by this builder. |
B |
SceneBuilder.onSwipeLeft(EventHandler<? super SwipeEvent> x)
Set the value of the
onSwipeLeft property for the instance constructed by this builder. |
B |
NodeBuilder.onSwipeLeft(EventHandler<? super SwipeEvent> x)
Set the value of the
onSwipeLeft property for the instance constructed by this builder. |
B |
SceneBuilder.onSwipeRight(EventHandler<? super SwipeEvent> x)
Set the value of the
onSwipeRight property for the instance constructed by this builder. |
B |
NodeBuilder.onSwipeRight(EventHandler<? super SwipeEvent> x)
Set the value of the
onSwipeRight property for the instance constructed by this builder. |
B |
SceneBuilder.onSwipeUp(EventHandler<? super SwipeEvent> x)
Set the value of the
onSwipeUp property for the instance constructed by this builder. |
B |
NodeBuilder.onSwipeUp(EventHandler<? super SwipeEvent> x)
Set the value of the
onSwipeUp property for the instance constructed by this builder. |
B |
SceneBuilder.onTouchMoved(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchMoved property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchMoved(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchMoved property for the instance constructed by this builder. |
B |
SceneBuilder.onTouchPressed(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchPressed property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchPressed(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchPressed property for the instance constructed by this builder. |
B |
SceneBuilder.onTouchReleased(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchReleased property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchReleased(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchReleased property for the instance constructed by this builder. |
B |
SceneBuilder.onTouchStationary(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchStationary property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchStationary(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchStationary property for the instance constructed by this builder. |
B |
SceneBuilder.onZoom(EventHandler<? super ZoomEvent> x)
Set the value of the
onZoom property for the instance constructed by this builder. |
B |
NodeBuilder.onZoom(EventHandler<? super ZoomEvent> x)
Set the value of the
onZoom property for the instance constructed by this builder. |
B |
SceneBuilder.onZoomFinished(EventHandler<? super ZoomEvent> x)
Set the value of the
onZoomFinished property for the instance constructed by this builder. |
B |
NodeBuilder.onZoomFinished(EventHandler<? super ZoomEvent> x)
Set the value of the
onZoomFinished property for the instance constructed by this builder. |
B |
SceneBuilder.onZoomStarted(EventHandler<? super ZoomEvent> x)
Set the value of the
onZoomStarted property for the instance constructed by this builder. |
B |
NodeBuilder.onZoomStarted(EventHandler<? super ZoomEvent> x)
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)
Sets the value of the property onContextMenuRequested.
|
void |
Node.setOnContextMenuRequested(EventHandler<? super ContextMenuEvent> value)
Sets the value of the property onContextMenuRequested.
|
void |
Scene.setOnDragDetected(EventHandler<? super MouseEvent> value)
Sets the value of the property onDragDetected.
|
void |
Node.setOnDragDetected(EventHandler<? super MouseEvent> value)
Sets the value of the property onDragDetected.
|
void |
Scene.setOnDragDone(EventHandler<? super DragEvent> value)
Sets the value of the property onDragDone.
|
void |
Node.setOnDragDone(EventHandler<? super DragEvent> value)
Sets the value of the property onDragDone.
|
void |
Scene.setOnDragDropped(EventHandler<? super DragEvent> value)
Sets the value of the property onDragDropped.
|
void |
Node.setOnDragDropped(EventHandler<? super DragEvent> value)
Sets the value of the property onDragDropped.
|
void |
Scene.setOnDragEntered(EventHandler<? super DragEvent> value)
Sets the value of the property onDragEntered.
|
void |
Node.setOnDragEntered(EventHandler<? super DragEvent> value)
Sets the value of the property onDragEntered.
|
void |
Scene.setOnDragExited(EventHandler<? super DragEvent> value)
Sets the value of the property onDragExited.
|
void |
Node.setOnDragExited(EventHandler<? super DragEvent> value)
Sets the value of the property onDragExited.
|
void |
Scene.setOnDragOver(EventHandler<? super DragEvent> value)
Sets the value of the property onDragOver.
|
void |
Node.setOnDragOver(EventHandler<? super DragEvent> value)
Sets the value of the property onDragOver.
|
void |
Scene.setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value)
Sets the value of the property onInputMethodTextChanged.
|
void |
Node.setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value)
Sets the value of the property onInputMethodTextChanged.
|
void |
Scene.setOnKeyPressed(EventHandler<? super KeyEvent> value)
Sets the value of the property onKeyPressed.
|
void |
Node.setOnKeyPressed(EventHandler<? super KeyEvent> value)
Sets the value of the property onKeyPressed.
|
void |
Scene.setOnKeyReleased(EventHandler<? super KeyEvent> value)
Sets the value of the property onKeyReleased.
|
void |
Node.setOnKeyReleased(EventHandler<? super KeyEvent> value)
Sets the value of the property onKeyReleased.
|
void |
Scene.setOnKeyTyped(EventHandler<? super KeyEvent> value)
Sets the value of the property onKeyTyped.
|
void |
Node.setOnKeyTyped(EventHandler<? super KeyEvent> value)
Sets the value of the property onKeyTyped.
|
void |
Scene.setOnMouseClicked(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseClicked.
|
void |
Node.setOnMouseClicked(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseClicked.
|
void |
Scene.setOnMouseDragEntered(EventHandler<? super MouseDragEvent> value)
Sets the value of the property onMouseDragEntered.
|
void |
Node.setOnMouseDragEntered(EventHandler<? super MouseDragEvent> value)
Sets the value of the property onMouseDragEntered.
|
void |
Scene.setOnMouseDragExited(EventHandler<? super MouseDragEvent> value)
Sets the value of the property onMouseDragExited.
|
void |
Node.setOnMouseDragExited(EventHandler<? super MouseDragEvent> value)
Sets the value of the property onMouseDragExited.
|
void |
Scene.setOnMouseDragged(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseDragged.
|
void |
Node.setOnMouseDragged(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseDragged.
|
void |
Scene.setOnMouseDragOver(EventHandler<? super MouseDragEvent> value)
Sets the value of the property onMouseDragOver.
|
void |
Node.setOnMouseDragOver(EventHandler<? super MouseDragEvent> value)
Sets the value of the property onMouseDragOver.
|
void |
Scene.setOnMouseDragReleased(EventHandler<? super MouseDragEvent> value)
Sets the value of the property onMouseDragReleased.
|
void |
Node.setOnMouseDragReleased(EventHandler<? super MouseDragEvent> value)
Sets the value of the property onMouseDragReleased.
|
void |
Scene.setOnMouseEntered(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseEntered.
|
void |
Node.setOnMouseEntered(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseEntered.
|
void |
Scene.setOnMouseExited(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseExited.
|
void |
Node.setOnMouseExited(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseExited.
|
void |
Scene.setOnMouseMoved(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseMoved.
|
void |
Node.setOnMouseMoved(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseMoved.
|
void |
Scene.setOnMousePressed(EventHandler<? super MouseEvent> value)
Sets the value of the property onMousePressed.
|
void |
Node.setOnMousePressed(EventHandler<? super MouseEvent> value)
Sets the value of the property onMousePressed.
|
void |
Scene.setOnMouseReleased(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseReleased.
|
void |
Node.setOnMouseReleased(EventHandler<? super MouseEvent> value)
Sets the value of the property onMouseReleased.
|
void |
Scene.setOnRotate(EventHandler<? super RotateEvent> value)
Sets the value of the property onRotate.
|
void |
Node.setOnRotate(EventHandler<? super RotateEvent> value)
Sets the value of the property onRotate.
|
void |
Scene.setOnRotationFinished(EventHandler<? super RotateEvent> value)
Sets the value of the property onRotationFinished.
|
void |
Node.setOnRotationFinished(EventHandler<? super RotateEvent> value)
Sets the value of the property onRotationFinished.
|
void |
Scene.setOnRotationStarted(EventHandler<? super RotateEvent> value)
Sets the value of the property onRotationStarted.
|
void |
Node.setOnRotationStarted(EventHandler<? super RotateEvent> value)
Sets the value of the property onRotationStarted.
|
void |
Scene.setOnScroll(EventHandler<? super ScrollEvent> value)
Sets the value of the property onScroll.
|
void |
Node.setOnScroll(EventHandler<? super ScrollEvent> value)
Sets the value of the property onScroll.
|
void |
Scene.setOnScrollFinished(EventHandler<? super ScrollEvent> value)
Sets the value of the property onScrollFinished.
|
void |
Node.setOnScrollFinished(EventHandler<? super ScrollEvent> value)
Sets the value of the property onScrollFinished.
|
void |
Scene.setOnScrollStarted(EventHandler<? super ScrollEvent> value)
Sets the value of the property onScrollStarted.
|
void |
Node.setOnScrollStarted(EventHandler<? super ScrollEvent> value)
Sets the value of the property onScrollStarted.
|
void |
Scene.setOnSwipeDown(EventHandler<? super SwipeEvent> value)
Sets the value of the property onSwipeDown.
|
void |
Node.setOnSwipeDown(EventHandler<? super SwipeEvent> value)
Sets the value of the property onSwipeDown.
|
void |
Scene.setOnSwipeLeft(EventHandler<? super SwipeEvent> value)
Sets the value of the property onSwipeLeft.
|
void |
Node.setOnSwipeLeft(EventHandler<? super SwipeEvent> value)
Sets the value of the property onSwipeLeft.
|
void |
Scene.setOnSwipeRight(EventHandler<? super SwipeEvent> value)
Sets the value of the property onSwipeRight.
|
void |
Node.setOnSwipeRight(EventHandler<? super SwipeEvent> value)
Sets the value of the property onSwipeRight.
|
void |
Scene.setOnSwipeUp(EventHandler<? super SwipeEvent> value)
Sets the value of the property onSwipeUp.
|
void |
Node.setOnSwipeUp(EventHandler<? super SwipeEvent> value)
Sets the value of the property onSwipeUp.
|
void |
Scene.setOnTouchMoved(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchMoved.
|
void |
Node.setOnTouchMoved(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchMoved.
|
void |
Scene.setOnTouchPressed(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchPressed.
|
void |
Node.setOnTouchPressed(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchPressed.
|
void |
Scene.setOnTouchReleased(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchReleased.
|
void |
Node.setOnTouchReleased(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchReleased.
|
void |
Scene.setOnTouchStationary(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchStationary.
|
void |
Node.setOnTouchStationary(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchStationary.
|
void |
Scene.setOnZoom(EventHandler<? super ZoomEvent> value)
Sets the value of the property onZoom.
|
void |
Node.setOnZoom(EventHandler<? super ZoomEvent> value)
Sets the value of the property onZoom.
|
void |
Scene.setOnZoomFinished(EventHandler<? super ZoomEvent> value)
Sets the value of the property onZoomFinished.
|
void |
Node.setOnZoomFinished(EventHandler<? super ZoomEvent> value)
Sets the value of the property onZoomFinished.
|
void |
Scene.setOnZoomStarted(EventHandler<? super ZoomEvent> value)
Sets the value of the property onZoomStarted.
|
void |
Node.setOnZoomStarted(EventHandler<? super ZoomEvent> value)
Sets the value of the property onZoomStarted.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<ActionEvent> |
TextField.getOnAction()
Gets the value of the property onAction.
|
EventHandler<ActionEvent> |
MenuItem.getOnAction()
Gets the value of the property onAction.
|
EventHandler<ActionEvent> |
ContextMenu.getOnAction()
Gets the value of the property onAction.
|
EventHandler<ActionEvent> |
ComboBoxBase.getOnAction()
Gets the value of the property onAction.
|
EventHandler<ActionEvent> |
ButtonBase.getOnAction()
Gets the value of the property onAction.
|
EventHandler<Event> |
Tab.getOnClosed()
The event handler that is associated with the tab when the tab is closed.
|
EventHandler<TreeView.EditEvent<T>> |
TreeView.getOnEditCancel()
Returns the
EventHandler that will be called when the user cancels
an edit. |
EventHandler<TableColumn.CellEditEvent<S,T>> |
TableColumn.getOnEditCancel()
Gets the value of the property onEditCancel.
|
EventHandler<ListView.EditEvent<T>> |
ListView.getOnEditCancel()
Returns the
EventHandler that will be called when the user cancels
an edit. |
EventHandler<TreeView.EditEvent<T>> |
TreeView.getOnEditCommit()
Returns the
EventHandler that will be called when the user commits
an edit. |
EventHandler<TableColumn.CellEditEvent<S,T>> |
TableColumn.getOnEditCommit()
Gets the value of the property onEditCommit.
|
EventHandler<ListView.EditEvent<T>> |
ListView.getOnEditCommit()
Returns the
EventHandler that will be called when the user commits
an edit. |
EventHandler<TreeView.EditEvent<T>> |
TreeView.getOnEditStart()
Returns the
EventHandler that will be called when the user begins
an edit. |
EventHandler<TableColumn.CellEditEvent<S,T>> |
TableColumn.getOnEditStart()
Gets the value of the property onEditStart.
|
EventHandler<ListView.EditEvent<T>> |
ListView.getOnEditStart()
Returns the
EventHandler that will be called when the user begins
an edit. |
EventHandler<Event> |
Menu.getOnHidden()
Gets the value of the property onHidden.
|
EventHandler<Event> |
ComboBoxBase.getOnHidden()
Gets the value of the property onHidden.
|
EventHandler<Event> |
Menu.getOnHiding()
Gets the value of the property onHiding.
|
EventHandler<Event> |
ComboBoxBase.getOnHiding()
Gets the value of the property onHiding.
|
EventHandler<Event> |
MenuItem.getOnMenuValidation()
Gets the value of the property onMenuValidation.
|
EventHandler<Event> |
Tab.getOnSelectionChanged()
The event handler that is associated with a selection on the tab.
|
EventHandler<Event> |
Menu.getOnShowing()
Gets the value of the property onShowing.
|
EventHandler<Event> |
ComboBoxBase.getOnShowing()
Gets the value of the property onShowing.
|
EventHandler<Event> |
Menu.getOnShown()
Gets the value of the property onShown.
|
EventHandler<Event> |
ComboBoxBase.getOnShown()
Gets the value of the property onShown.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<ActionEvent>> |
TextField.onActionProperty()
The action handler associated with this text field, or
null if no action handler is assigned.
|
ObjectProperty<EventHandler<ActionEvent>> |
MenuItem.onActionProperty()
The action, which is invoked whenever the MenuItem is fired.
|
ObjectProperty<EventHandler<ActionEvent>> |
ContextMenu.onActionProperty()
Callback function to be informed when an item contained within this
ContextMenu has been activated. |
ObjectProperty<EventHandler<ActionEvent>> |
ComboBoxBase.onActionProperty()
The ComboBox action, which is invoked whenever the ComboBox
value property is changed. |
ObjectProperty<EventHandler<ActionEvent>> |
ButtonBase.onActionProperty()
The button's action, which is invoked whenever the button is fired.
|
ObjectProperty<EventHandler<Event>> |
Tab.onClosedProperty()
The event handler that is associated with the tab when the tab is closed.
|
ObjectProperty<EventHandler<TreeView.EditEvent<T>>> |
TreeView.onEditCancelProperty()
This event handler will be fired when the user cancels editing a cell.
|
ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> |
TableColumn.onEditCancelProperty()
This event handler will be fired when the user cancels editing a cell.
|
ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditCancelProperty()
This event handler will be fired when the user cancels editing a cell.
|
ObjectProperty<EventHandler<TreeView.EditEvent<T>>> |
TreeView.onEditCommitProperty()
This property is used when the user performs an action that should
result in their editing input being persisted.
|
ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> |
TableColumn.onEditCommitProperty()
This event handler will be fired when the user successfully commits their
editing.
|
ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditCommitProperty()
This property is used when the user performs an action that should
result in their editing input being persisted.
|
ObjectProperty<EventHandler<TreeView.EditEvent<T>>> |
TreeView.onEditStartProperty()
This event handler will be fired when the user successfully initiates
editing.
|
ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> |
TableColumn.onEditStartProperty()
This event handler will be fired when the user successfully initiates
editing.
|
ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditStartProperty()
This event handler will be fired when the user successfully initiates
editing.
|
ObjectProperty<EventHandler<Event>> |
Menu.onHiddenProperty() |
ObjectProperty<EventHandler<Event>> |
ComboBoxBase.onHiddenProperty() |
ObjectProperty<EventHandler<Event>> |
Menu.onHidingProperty() |
ObjectProperty<EventHandler<Event>> |
ComboBoxBase.onHidingProperty() |
ObjectProperty<EventHandler<Event>> |
MenuItem.onMenuValidationProperty()
The event handler that is associated with invocation of an accelerator for a MenuItem.
|
ObjectProperty<EventHandler<Event>> |
Tab.onSelectionChangedProperty()
The event handler that is associated with a selection on the tab.
|
ObjectProperty<EventHandler<Event>> |
Menu.onShowingProperty() |
ObjectProperty<EventHandler<Event>> |
ComboBoxBase.onShowingProperty() |
ObjectProperty<EventHandler<Event>> |
Menu.onShownProperty() |
ObjectProperty<EventHandler<Event>> |
ComboBoxBase.onShownProperty() |
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> |
TableColumn.addEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Registers an event handler to this TableColumn.
|
<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) |
B |
TextFieldBuilder.onAction(EventHandler<ActionEvent> x)
Set the value of the
onAction property for the instance constructed by this builder. |
B |
MenuItemBuilder.onAction(EventHandler<ActionEvent> x)
Set the value of the
onAction property for the instance constructed by this builder. |
B |
ContextMenuBuilder.onAction(EventHandler<ActionEvent> x)
Set the value of the
onAction property for the instance constructed by this builder. |
B |
ComboBoxBaseBuilder.onAction(EventHandler<ActionEvent> x)
Set the value of the
onAction property for the instance constructed by this builder. |
B |
ButtonBaseBuilder.onAction(EventHandler<ActionEvent> x)
Set the value of the
onAction property for the instance constructed by this builder. |
B |
TabBuilder.onClosed(EventHandler<Event> x)
Set the value of the
onClosed property for the instance constructed by this builder. |
B |
ListViewBuilder.onEditCancel(EventHandler<ListView.EditEvent<T>> x)
Set the value of the
onEditCancel property for the instance constructed by this builder. |
B |
TableColumnBuilder.onEditCancel(EventHandler<TableColumn.CellEditEvent<S,T>> x)
Set the value of the
onEditCancel property for the instance constructed by this builder. |
B |
TreeViewBuilder.onEditCancel(EventHandler<TreeView.EditEvent<T>> x)
Set the value of the
onEditCancel property for the instance constructed by this builder. |
B |
ListViewBuilder.onEditCommit(EventHandler<ListView.EditEvent<T>> x)
Set the value of the
onEditCommit property for the instance constructed by this builder. |
B |
TableColumnBuilder.onEditCommit(EventHandler<TableColumn.CellEditEvent<S,T>> x)
Set the value of the
onEditCommit property for the instance constructed by this builder. |
B |
TreeViewBuilder.onEditCommit(EventHandler<TreeView.EditEvent<T>> x)
Set the value of the
onEditCommit property for the instance constructed by this builder. |
B |
ListViewBuilder.onEditStart(EventHandler<ListView.EditEvent<T>> x)
Set the value of the
onEditStart property for the instance constructed by this builder. |
B |
TableColumnBuilder.onEditStart(EventHandler<TableColumn.CellEditEvent<S,T>> x)
Set the value of the
onEditStart property for the instance constructed by this builder. |
B |
TreeViewBuilder.onEditStart(EventHandler<TreeView.EditEvent<T>> x)
Set the value of the
onEditStart property for the instance constructed by this builder. |
B |
MenuBuilder.onHidden(EventHandler<Event> x)
Set the value of the
onHidden property for the instance constructed by this builder. |
B |
ComboBoxBaseBuilder.onHidden(EventHandler<Event> x)
Set the value of the
onHidden property for the instance constructed by this builder. |
B |
MenuBuilder.onHiding(EventHandler<Event> x)
Set the value of the
onHiding property for the instance constructed by this builder. |
B |
ComboBoxBaseBuilder.onHiding(EventHandler<Event> x)
Set the value of the
onHiding property for the instance constructed by this builder. |
B |
MenuItemBuilder.onMenuValidation(EventHandler<Event> x)
Set the value of the
onMenuValidation property for the instance constructed by this builder. |
B |
TabBuilder.onSelectionChanged(EventHandler<Event> x)
Set the value of the
onSelectionChanged property for the instance constructed by this builder. |
B |
MenuBuilder.onShowing(EventHandler<Event> x)
Set the value of the
onShowing property for the instance constructed by this builder. |
B |
ComboBoxBaseBuilder.onShowing(EventHandler<Event> x)
Set the value of the
onShowing property for the instance constructed by this builder. |
B |
MenuBuilder.onShown(EventHandler<Event> x)
Set the value of the
onShown property for the instance constructed by this builder. |
B |
ComboBoxBaseBuilder.onShown(EventHandler<Event> x)
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> |
TableColumn.removeEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Unregisters a previously registered event handler from this TableColumn.
|
<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) |
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)
Sets the value of the property onAction.
|
void |
MenuItem.setOnAction(EventHandler<ActionEvent> value)
Sets the value of the property onAction.
|
void |
ContextMenu.setOnAction(EventHandler<ActionEvent> value)
Sets the value of the property onAction.
|
void |
ComboBoxBase.setOnAction(EventHandler<ActionEvent> value)
Sets the value of the property onAction.
|
void |
ButtonBase.setOnAction(EventHandler<ActionEvent> value)
Sets the value of the property onAction.
|
void |
Tab.setOnClosed(EventHandler<Event> value)
Defines a function to be called when the tab is closed.
|
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)
Sets the value of the property onEditCancel.
|
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)
Sets the value of the property onEditCommit.
|
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)
Sets the value of the property onEditStart.
|
void |
TreeView.setOnEditStart(EventHandler<TreeView.EditEvent<T>> value)
Sets the
EventHandler that will be called when the user begins
an edit. |
void |
Menu.setOnHidden(EventHandler<Event> value)
Called just after the
ContextMenu has been hidden. |
void |
ComboBoxBase.setOnHidden(EventHandler<Event> value)
Called just after the
ComboBoxBase popup/display has been hidden. |
void |
Menu.setOnHiding(EventHandler<Event> value)
Called just prior to the
ContextMenu being hidden. |
void |
ComboBoxBase.setOnHiding(EventHandler<Event> value)
Called just prior to the
ComboBox popup/display being hidden. |
void |
MenuItem.setOnMenuValidation(EventHandler<Event> value)
Sets the value of the property onMenuValidation.
|
void |
Tab.setOnSelectionChanged(EventHandler<Event> value)
Defines a function to be called when a selection changed has occurred on the tab.
|
void |
Menu.setOnShowing(EventHandler<Event> value)
Called just prior to the
ContextMenu being shown, even if the menu has
no items to show. |
void |
ComboBoxBase.setOnShowing(EventHandler<Event> value)
Called just prior to the
ComboBoxBase popup/display being shown, |
void |
Menu.setOnShown(EventHandler<Event> value)
Called just after the
ContextMenu is shown. |
void |
ComboBoxBase.setOnShown(EventHandler<Event> value)
Called just after the
ComboBoxBase popup/display is shown. |
Modifier and Type | Field and Description |
---|---|
private EventHandler<MediaErrorEvent> |
MediaViewBuilder.onError |
private EventHandler<MediaMarkerEvent> |
MediaPlayerBuilder.onMarker |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<EventHandler<MediaErrorEvent>> |
MediaView.onError
Event handler to be invoked whenever an error occurs on this
MediaView . |
private ObjectProperty<EventHandler<MediaMarkerEvent>> |
MediaPlayer.onMarker
Event handler invoked when the player
currentTime reaches a
media marker. |
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()
Event handler to be invoked whenever an error occurs on this
MediaView . |
ObjectProperty<EventHandler<MediaMarkerEvent>> |
MediaPlayer.onMarkerProperty()
Event handler invoked when the player
currentTime reaches a
media marker. |
Modifier and Type | Method and Description |
---|---|
B |
MediaViewBuilder.onError(EventHandler<MediaErrorEvent> x)
Set the value of the
onError property for the instance constructed by this builder. |
MediaPlayerBuilder |
MediaPlayerBuilder.onMarker(EventHandler<MediaMarkerEvent> x)
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 | Field and Description |
---|---|
private EventHandler<WebEvent<java.lang.String>> |
WebEngineBuilder.onAlert |
private EventHandler<WebEvent<Rectangle2D>> |
WebEngineBuilder.onResized |
private EventHandler<WebEvent<java.lang.String>> |
WebEngineBuilder.onStatusChanged |
private EventHandler<WebEvent<java.lang.Boolean>> |
WebEngineBuilder.onVisibilityChanged |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<EventHandler<WebEvent<java.lang.String>>> |
WebEngine.onAlert |
private ObjectProperty<EventHandler<WebEvent<Rectangle2D>>> |
WebEngine.onResized |
private ObjectProperty<EventHandler<WebEvent<java.lang.String>>> |
WebEngine.onStatusChanged |
private ObjectProperty<EventHandler<WebEvent<java.lang.Boolean>>> |
WebEngine.onVisibilityChanged |
Modifier and Type | Method and Description |
---|---|
EventHandler<WebEvent<java.lang.String>> |
WebEngine.getOnAlert()
Returns the JavaScript
alert handler. |
EventHandler<WebEvent<Rectangle2D>> |
WebEngine.getOnResized()
Returns the JavaScript window resize handler.
|
EventHandler<WebEvent<java.lang.String>> |
WebEngine.getOnStatusChanged()
Returns the JavaScript status handler.
|
EventHandler<WebEvent<java.lang.Boolean>> |
WebEngine.getOnVisibilityChanged()
Returns the JavaScript window visibility handler.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<WebEvent<java.lang.String>>> |
WebEngine.onAlertProperty()
JavaScript
alert handler property. |
ObjectProperty<EventHandler<WebEvent<Rectangle2D>>> |
WebEngine.onResizedProperty()
JavaScript window resize handler property.
|
ObjectProperty<EventHandler<WebEvent<java.lang.String>>> |
WebEngine.onStatusChangedProperty()
JavaScript status handler property.
|
ObjectProperty<EventHandler<WebEvent<java.lang.Boolean>>> |
WebEngine.onVisibilityChangedProperty()
JavaScript window visibility handler property.
|
Modifier and Type | Method and Description |
---|---|
WebViewBuilder |
WebViewBuilder.onAlert(EventHandler<WebEvent<java.lang.String>> value)
|
WebEngineBuilder |
WebEngineBuilder.onAlert(EventHandler<WebEvent<java.lang.String>> value)
Sets the
onAlert
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.onResized(EventHandler<WebEvent<Rectangle2D>> value)
|
WebEngineBuilder |
WebEngineBuilder.onResized(EventHandler<WebEvent<Rectangle2D>> value)
Sets the
onResized
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.onStatusChanged(EventHandler<WebEvent<java.lang.String>> value)
Sets the
onStatusChanged
property for the engine
property of the instance constructed by this builder. |
WebEngineBuilder |
WebEngineBuilder.onStatusChanged(EventHandler<WebEvent<java.lang.String>> value)
Sets the
onStatusChanged
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.onVisibilityChanged(EventHandler<WebEvent<java.lang.Boolean>> value)
Sets the
onVisibilityChanged
property for the engine
property of the instance constructed by this builder. |
WebEngineBuilder |
WebEngineBuilder.onVisibilityChanged(EventHandler<WebEvent<java.lang.Boolean>> value)
Sets the
onVisibilityChanged
property for the instance constructed by this builder. |
void |
WebEngine.setOnAlert(EventHandler<WebEvent<java.lang.String>> handler)
Sets the JavaScript
alert handler. |
void |
WebEngine.setOnResized(EventHandler<WebEvent<Rectangle2D>> handler)
Sets the JavaScript window resize handler.
|
void |
WebEngine.setOnStatusChanged(EventHandler<WebEvent<java.lang.String>> handler)
Sets the JavaScript status handler.
|
void |
WebEngine.setOnVisibilityChanged(EventHandler<WebEvent<java.lang.Boolean>> handler)
Sets the JavaScript window visibility handler.
|
Modifier and Type | Field and Description |
---|---|
private EventHandler<Event> |
PopupWindowBuilder.onAutoHide |
private EventHandler<WindowEvent> |
WindowBuilder.onCloseRequest |
private EventHandler<WindowEvent> |
WindowBuilder.onHidden |
private EventHandler<WindowEvent> |
WindowBuilder.onHiding |
private EventHandler<WindowEvent> |
WindowBuilder.onShowing |
private EventHandler<WindowEvent> |
WindowBuilder.onShown |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<EventHandler<Event>> |
PopupWindow.onAutoHide
Called after autoHide is run.
|
private ObjectProperty<EventHandler<WindowEvent>> |
Window.onCloseRequest
Called when there is an external request to close this
Window . |
private ObjectProperty<EventHandler<WindowEvent>> |
Window.onHidden
Called just after the Window has been hidden.
|
private ObjectProperty<EventHandler<WindowEvent>> |
Window.onHiding
Called just prior to the Window being hidden.
|
private ObjectProperty<EventHandler<WindowEvent>> |
Window.onShowing
Called just prior to the Window being shown.
|
private ObjectProperty<EventHandler<WindowEvent>> |
Window.onShown
Called just after the Window is shown.
|
Modifier and Type | Method and Description |
---|---|
EventHandler<Event> |
PopupWindow.getOnAutoHide()
Gets the value of the property onAutoHide.
|
EventHandler<WindowEvent> |
Window.getOnCloseRequest()
Gets the value of the property onCloseRequest.
|
EventHandler<WindowEvent> |
Window.getOnHidden()
Gets the value of the property onHidden.
|
EventHandler<WindowEvent> |
Window.getOnHiding()
Gets the value of the property onHiding.
|
EventHandler<WindowEvent> |
Window.getOnShowing()
Gets the value of the property onShowing.
|
EventHandler<WindowEvent> |
Window.getOnShown()
Gets the value of the property onShown.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<Event>> |
PopupWindow.onAutoHideProperty()
Called after autoHide is run.
|
ObjectProperty<EventHandler<WindowEvent>> |
Window.onCloseRequestProperty()
Called when there is an external request to close this
Window . |
ObjectProperty<EventHandler<WindowEvent>> |
Window.onHiddenProperty()
Called just after the Window has been hidden.
|
ObjectProperty<EventHandler<WindowEvent>> |
Window.onHidingProperty()
Called just prior to the Window being hidden.
|
ObjectProperty<EventHandler<WindowEvent>> |
Window.onShowingProperty()
Called just prior to the Window being shown.
|
ObjectProperty<EventHandler<WindowEvent>> |
Window.onShownProperty()
Called just after the Window is shown.
|
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)
Set the value of the
onAutoHide property for the instance constructed by this builder. |
B |
WindowBuilder.onCloseRequest(EventHandler<WindowEvent> x)
Set the value of the
onCloseRequest property for the instance constructed by this builder. |
B |
WindowBuilder.onHidden(EventHandler<WindowEvent> x)
Set the value of the
onHidden property for the instance constructed by this builder. |
B |
WindowBuilder.onHiding(EventHandler<WindowEvent> x)
Set the value of the
onHiding property for the instance constructed by this builder. |
B |
WindowBuilder.onShowing(EventHandler<WindowEvent> x)
Set the value of the
onShowing property for the instance constructed by this builder. |
B |
WindowBuilder.onShown(EventHandler<WindowEvent> x)
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)
Sets the value of the property onAutoHide.
|
void |
Window.setOnCloseRequest(EventHandler<WindowEvent> value)
Sets the value of the property onCloseRequest.
|
void |
Window.setOnHidden(EventHandler<WindowEvent> value)
Sets the value of the property onHidden.
|
void |
Window.setOnHiding(EventHandler<WindowEvent> value)
Sets the value of the property onHiding.
|
void |
Window.setOnShowing(EventHandler<WindowEvent> value)
Sets the value of the property onShowing.
|
void |
Window.setOnShown(EventHandler<WindowEvent> value)
Sets the value of the property onShown.
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to