Package | Description |
---|---|
com.sun.javafx.charts | |
com.sun.javafx.event | |
com.sun.javafx.menu | |
com.sun.javafx.scene | |
com.sun.javafx.scene.control.behavior | |
com.sun.javafx.scene.control.skin | |
com.sun.javafx.webkit | |
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.embed.swing |
Provides the set of classes to use JavaFX inside Swing applications.
|
javafx.event |
Provides basic framework for FX events, their delivery and handling.
|
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.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 | Field and Description |
---|---|
private EventHandler<? super T> |
CompositeEventHandler.NormalEventFilterRecord.eventFilter |
private EventHandler<? super T> |
CompositeEventHandler.eventHandler |
private EventHandler<? super T> |
CompositeEventHandler.NormalEventHandlerRecord.eventHandler |
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 . |
(package private) boolean |
CompositeEventHandler.containsFilter(EventHandler<? super T> eventFilter) |
(package private) boolean |
CompositeEventHandler.containsHandler(EventHandler<? super T> eventHandler) |
private CompositeEventHandler.EventProcessorRecord<T> |
CompositeEventHandler.createEventFilterRecord(EventHandler<? super T> eventFilter) |
private CompositeEventHandler.EventProcessorRecord<T> |
CompositeEventHandler.createEventHandlerRecord(EventHandler<? super T> eventHandler) |
private CompositeEventHandler.EventProcessorRecord<T> |
CompositeEventHandler.find(EventHandler<? super T> eventProcessor,
boolean isFilter) |
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.
|
abstract boolean |
CompositeEventHandler.EventProcessorRecord.stores(EventHandler<? super T> eventProcessor,
boolean isFilter) |
boolean |
CompositeEventHandler.NormalEventHandlerRecord.stores(EventHandler<? super T> eventProcessor,
boolean isFilter) |
boolean |
CompositeEventHandler.WeakEventHandlerRecord.stores(EventHandler<? super T> eventProcessor,
boolean isFilter) |
boolean |
CompositeEventHandler.NormalEventFilterRecord.stores(EventHandler<? super T> eventProcessor,
boolean isFilter) |
boolean |
CompositeEventHandler.WeakEventFilterRecord.stores(EventHandler<? super T> eventProcessor,
boolean isFilter) |
private static void |
EventHandlerManager.validateEventFilter(EventHandler<?> eventFilter) |
private static void |
EventHandlerManager.validateEventHandler(EventHandler<?> eventHandler) |
Constructor and Description |
---|
NormalEventFilterRecord(EventHandler<? super T> eventFilter) |
NormalEventHandlerRecord(EventHandler<? super T> eventHandler) |
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 | Field and Description |
---|---|
private EventHandler<KeyEvent> |
TwoLevelFocusBehavior.keyEventListener |
private EventHandler<KeyEvent> |
TwoLevelFocusListBehavior.keyEventListener |
private EventHandler<KeyEvent> |
BehaviorBase.keyEventListener
Listens to any key events on the Control and responds to them
|
private EventHandler<KeyEvent> |
TwoLevelFocusComboBehavior.keyEventListener |
private EventHandler<KeyEvent> |
TwoLevelFocusPopupBehavior.keyEventListener |
private EventHandler<MouseEvent> |
TwoLevelFocusBehavior.mouseEventListener |
private EventHandler<MouseEvent> |
TwoLevelFocusListBehavior.mouseEventListener |
private EventHandler<MouseEvent> |
TwoLevelFocusComboBehavior.mouseEventListener |
private EventHandler<MouseEvent> |
TwoLevelFocusPopupBehavior.mouseEventListener |
(package private) EventHandler<ActionEvent> |
SpinnerBehavior.spinningKeyFrameEventHandler |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<EventHandler<KeyEvent>> |
FXVK.onAction |
private ObjectProperty<EventHandler<ActionEvent>> |
InputField.onAction
The action handler associated with this InputField, or
null if no action handler is assigned.
|
Modifier and Type | Method and Description |
---|---|
(package private) EventHandler<KeyEvent> |
MenuBarSkin.getKeyEventHandler() |
EventHandler<KeyEvent> |
FXVK.getOnAction() |
EventHandler<ActionEvent> |
InputField.getOnAction() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventHandler<KeyEvent>> |
FXVK.onActionProperty() |
ObjectProperty<EventHandler<ActionEvent>> |
InputField.onActionProperty() |
Modifier and Type | Method and Description |
---|---|
private Timeline |
TabPaneSkin.createTimeline(TabPaneSkin.TabHeaderSkin tabRegion,
Duration duration,
double endValue,
EventHandler<ActionEvent> func) |
void |
InputField.setOnAction(EventHandler<ActionEvent> value) |
void |
FXVK.setOnAction(EventHandler<KeyEvent> value) |
void |
CustomColorDialog.setOnHidden(EventHandler<WindowEvent> onHidden) |
Modifier and Type | Method and Description |
---|---|
private void |
UIClientImpl.dispatchWebEvent(EventHandler handler,
WebEvent ev) |
Modifier and Type | Field and Description |
---|---|
private static EventHandler<ActionEvent> |
Animation.DEFAULT_ON_FINISHED |
private static EventHandler<ActionEvent> |
KeyFrame.DEFAULT_ON_FINISHED |
private EventHandler<ActionEvent> |
AnimationBuilder.onFinished
Deprecated.
|
private EventHandler<ActionEvent> |
KeyFrame.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> |
Animation.getOnFinished() |
EventHandler<ActionEvent> |
KeyFrame.getOnFinished()
Returns the
onFinished event handler of this KeyFrame . |
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,
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 |
---|---|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnCancelled() |
EventHandler<WorkerStateEvent> |
Service.getOnCancelled()
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
EventHandler<WorkerStateEvent> |
Task.getOnCancelled()
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnFailed() |
EventHandler<WorkerStateEvent> |
Service.getOnFailed()
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
EventHandler<WorkerStateEvent> |
Task.getOnFailed()
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnReady() |
EventHandler<WorkerStateEvent> |
Service.getOnReady()
The onReady event handler is called whenever the Task state transitions
to the READY state.
|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnRunning() |
EventHandler<WorkerStateEvent> |
Service.getOnRunning()
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
EventHandler<WorkerStateEvent> |
Task.getOnRunning()
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnScheduled() |
EventHandler<WorkerStateEvent> |
Service.getOnScheduled()
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
EventHandler<WorkerStateEvent> |
Task.getOnScheduled()
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
(package private) EventHandler<WorkerStateEvent> |
EventHelper.getOnSucceeded() |
EventHandler<WorkerStateEvent> |
Service.getOnSucceeded()
The onSucceeded event handler is called whenever the Task state
transitions to the SUCCEEDED state.
|
EventHandler<WorkerStateEvent> |
Task.getOnSucceeded()
The onSucceeded event handler is called whenever the Task state
transitions to the SUCCEEDED state.
|
Modifier and Type | Method and Description |
---|---|
(package private) ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onCancelledProperty() |
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onCancelledProperty()
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Task.onCancelledProperty()
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
(package private) ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onFailedProperty() |
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onFailedProperty()
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Task.onFailedProperty()
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
(package private) ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onReadyProperty() |
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.onRunningProperty() |
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onRunningProperty()
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Task.onRunningProperty()
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
(package private) ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onScheduledProperty() |
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onScheduledProperty()
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Task.onScheduledProperty()
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
(package private) ObjectProperty<EventHandler<WorkerStateEvent>> |
EventHelper.onSucceededProperty() |
ObjectProperty<EventHandler<WorkerStateEvent>> |
Service.onSucceededProperty()
The onSucceeded event handler is called whenever the Task state
transitions to the SUCCEEDED state.
|
ObjectProperty<EventHandler<WorkerStateEvent>> |
Task.onSucceededProperty()
The onSucceeded event handler is called whenever the Task state
transitions to the SUCCEEDED state.
|
Modifier and Type | Method and Description |
---|---|
(package private) <T extends Event> |
EventHelper.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.addEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Registers an event filter 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> |
Service.addEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Registers an event handler to this task.
|
<T extends Event> |
Task.addEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Registers an event handler to 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> |
Service.removeEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Unregisters a previously registered event filter from this task.
|
<T extends Event> |
Task.removeEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Unregisters a previously registered event filter 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.
|
<T extends Event> |
Service.removeEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Unregisters a previously registered event handler from this task.
|
<T extends Event> |
Task.removeEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Unregisters a previously registered event handler from this task.
|
(package private) <T extends Event> |
EventHelper.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.
|
protected <T extends Event> |
Task.setEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Sets the handler to use for this event type.
|
(package private) void |
EventHelper.setOnCancelled(EventHandler<WorkerStateEvent> value) |
void |
Service.setOnCancelled(EventHandler<WorkerStateEvent> value)
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
void |
Task.setOnCancelled(EventHandler<WorkerStateEvent> value)
The onCancelled event handler is called whenever the Task state
transitions to the CANCELLED state.
|
(package private) void |
EventHelper.setOnFailed(EventHandler<WorkerStateEvent> value) |
void |
Service.setOnFailed(EventHandler<WorkerStateEvent> value)
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
void |
Task.setOnFailed(EventHandler<WorkerStateEvent> value)
The onFailed event handler is called whenever the Task state
transitions to the FAILED state.
|
(package private) void |
EventHelper.setOnReady(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.setOnRunning(EventHandler<WorkerStateEvent> value) |
void |
Service.setOnRunning(EventHandler<WorkerStateEvent> value)
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
void |
Task.setOnRunning(EventHandler<WorkerStateEvent> value)
The onRunning event handler is called whenever the Task state
transitions to the RUNNING state.
|
(package private) void |
EventHelper.setOnScheduled(EventHandler<WorkerStateEvent> value) |
void |
Service.setOnScheduled(EventHandler<WorkerStateEvent> value)
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
void |
Task.setOnScheduled(EventHandler<WorkerStateEvent> value)
The onSchedule event handler is called whenever the Task state
transitions to the SCHEDULED state.
|
(package private) void |
EventHelper.setOnSucceeded(EventHandler<WorkerStateEvent> value) |
void |
Service.setOnSucceeded(EventHandler<WorkerStateEvent> value)
The onSucceeded event handler is called whenever the Task state
transitions to the SUCCEEDED state.
|
void |
Task.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 |
---|---|
private class |
SwingNode.SwingKeyEventHandler |
private class |
SwingNode.SwingMouseEventHandler |
private class |
SwingNode.SwingScrollEventHandler |
Modifier and Type | Field and Description |
---|---|
private EventHandler<DragEvent> |
FXDnD.onDragDoneHandler |
private EventHandler<DragEvent> |
FXDnD.onDragDroppedHandler |
private EventHandler<DragEvent> |
FXDnD.onDragEnteredHandler |
private EventHandler<DragEvent> |
FXDnD.onDragExitedHandler |
private EventHandler<DragEvent> |
FXDnD.onDragOverHandler |
private EventHandler<MouseEvent> |
FXDnD.onDragStartHandler |
private EventHandler<MouseEvent> |
FXDnD.onMousePressHandler |
private EventHandler<FocusUngrabEvent> |
SwingNode.ungrabHandler |
private EventHandler |
SwingNode.windowHiddenHandler |
Modifier and Type | Class and Description |
---|---|
class |
WeakEventHandler<T extends Event>
Used in event handler registration in place of its associated event handler.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.ref.WeakReference<EventHandler<T>> |
WeakEventHandler.weakRef |
Constructor and Description |
---|
WeakEventHandler(EventHandler<T> eventHandler)
Creates a new instance of
WeakEventHandler . |
Modifier and Type | Class and Description |
---|---|
private static class |
FXMLLoader.ControllerMethodEventHandler<T extends Event> |
private static class |
FXMLLoader.ScriptEventHandler |
Modifier and Type | Field and Description |
---|---|
private EventHandler<? super ContextMenuEvent> |
NodeBuilder.onContextMenuRequested
Deprecated.
|
private EventHandler<? super ContextMenuEvent> |
SceneBuilder.onContextMenuRequested
Deprecated.
|
private EventHandler<? super MouseEvent> |
NodeBuilder.onDragDetected
Deprecated.
|
private EventHandler<? super MouseEvent> |
SceneBuilder.onDragDetected
Deprecated.
|
private EventHandler<? super DragEvent> |
NodeBuilder.onDragDone
Deprecated.
|
private EventHandler<? super DragEvent> |
SceneBuilder.onDragDone
Deprecated.
|
private EventHandler<? super DragEvent> |
NodeBuilder.onDragDropped
Deprecated.
|
private EventHandler<? super DragEvent> |
SceneBuilder.onDragDropped
Deprecated.
|
private EventHandler<? super DragEvent> |
NodeBuilder.onDragEntered
Deprecated.
|
private EventHandler<? super DragEvent> |
SceneBuilder.onDragEntered
Deprecated.
|
private EventHandler<? super DragEvent> |
NodeBuilder.onDragExited
Deprecated.
|
private EventHandler<? super DragEvent> |
SceneBuilder.onDragExited
Deprecated.
|
private EventHandler<? super DragEvent> |
NodeBuilder.onDragOver
Deprecated.
|
private EventHandler<? super DragEvent> |
SceneBuilder.onDragOver
Deprecated.
|
private EventHandler<? super InputMethodEvent> |
NodeBuilder.onInputMethodTextChanged
Deprecated.
|
private EventHandler<? super InputMethodEvent> |
SceneBuilder.onInputMethodTextChanged
Deprecated.
|
private EventHandler<? super KeyEvent> |
NodeBuilder.onKeyPressed
Deprecated.
|
private EventHandler<? super KeyEvent> |
SceneBuilder.onKeyPressed
Deprecated.
|
private EventHandler<? super KeyEvent> |
NodeBuilder.onKeyReleased
Deprecated.
|
private EventHandler<? super KeyEvent> |
SceneBuilder.onKeyReleased
Deprecated.
|
private EventHandler<? super KeyEvent> |
NodeBuilder.onKeyTyped
Deprecated.
|
private EventHandler<? super KeyEvent> |
SceneBuilder.onKeyTyped
Deprecated.
|
private EventHandler<? super MouseEvent> |
NodeBuilder.onMouseClicked
Deprecated.
|
private EventHandler<? super MouseEvent> |
SceneBuilder.onMouseClicked
Deprecated.
|
private EventHandler<? super MouseDragEvent> |
NodeBuilder.onMouseDragEntered
Deprecated.
|
private EventHandler<? super MouseDragEvent> |
SceneBuilder.onMouseDragEntered
Deprecated.
|
private EventHandler<? super MouseDragEvent> |
NodeBuilder.onMouseDragExited
Deprecated.
|
private EventHandler<? super MouseDragEvent> |
SceneBuilder.onMouseDragExited
Deprecated.
|
private EventHandler<? super MouseEvent> |
NodeBuilder.onMouseDragged
Deprecated.
|
private EventHandler<? super MouseEvent> |
SceneBuilder.onMouseDragged
Deprecated.
|
private EventHandler<? super MouseDragEvent> |
NodeBuilder.onMouseDragOver
Deprecated.
|
private EventHandler<? super MouseDragEvent> |
SceneBuilder.onMouseDragOver
Deprecated.
|
private EventHandler<? super MouseDragEvent> |
NodeBuilder.onMouseDragReleased
Deprecated.
|
private EventHandler<? super MouseDragEvent> |
SceneBuilder.onMouseDragReleased
Deprecated.
|
private EventHandler<? super MouseEvent> |
NodeBuilder.onMouseEntered
Deprecated.
|
private EventHandler<? super MouseEvent> |
SceneBuilder.onMouseEntered
Deprecated.
|
private EventHandler<? super MouseEvent> |
NodeBuilder.onMouseExited
Deprecated.
|
private EventHandler<? super MouseEvent> |
SceneBuilder.onMouseExited
Deprecated.
|
private EventHandler<? super MouseEvent> |
NodeBuilder.onMouseMoved
Deprecated.
|
private EventHandler<? super MouseEvent> |
SceneBuilder.onMouseMoved
Deprecated.
|
private EventHandler<? super MouseEvent> |
NodeBuilder.onMousePressed
Deprecated.
|
private EventHandler<? super MouseEvent> |
SceneBuilder.onMousePressed
Deprecated.
|
private EventHandler<? super MouseEvent> |
NodeBuilder.onMouseReleased
Deprecated.
|
private EventHandler<? super MouseEvent> |
SceneBuilder.onMouseReleased
Deprecated.
|
private EventHandler<? super RotateEvent> |
NodeBuilder.onRotate
Deprecated.
|
private EventHandler<? super RotateEvent> |
SceneBuilder.onRotate
Deprecated.
|
private EventHandler<? super RotateEvent> |
NodeBuilder.onRotationFinished
Deprecated.
|
private EventHandler<? super RotateEvent> |
SceneBuilder.onRotationFinished
Deprecated.
|
private EventHandler<? super RotateEvent> |
NodeBuilder.onRotationStarted
Deprecated.
|
private EventHandler<? super RotateEvent> |
SceneBuilder.onRotationStarted
Deprecated.
|
private EventHandler<? super ScrollEvent> |
NodeBuilder.onScroll
Deprecated.
|
private EventHandler<? super ScrollEvent> |
SceneBuilder.onScroll
Deprecated.
|
private EventHandler<? super ScrollEvent> |
NodeBuilder.onScrollFinished
Deprecated.
|
private EventHandler<? super ScrollEvent> |
SceneBuilder.onScrollFinished
Deprecated.
|
private EventHandler<? super ScrollEvent> |
NodeBuilder.onScrollStarted
Deprecated.
|
private EventHandler<? super ScrollEvent> |
SceneBuilder.onScrollStarted
Deprecated.
|
private EventHandler<? super SwipeEvent> |
NodeBuilder.onSwipeDown
Deprecated.
|
private EventHandler<? super SwipeEvent> |
SceneBuilder.onSwipeDown
Deprecated.
|
private EventHandler<? super SwipeEvent> |
NodeBuilder.onSwipeLeft
Deprecated.
|
private EventHandler<? super SwipeEvent> |
SceneBuilder.onSwipeLeft
Deprecated.
|
private EventHandler<? super SwipeEvent> |
NodeBuilder.onSwipeRight
Deprecated.
|
private EventHandler<? super SwipeEvent> |
SceneBuilder.onSwipeRight
Deprecated.
|
private EventHandler<? super SwipeEvent> |
NodeBuilder.onSwipeUp
Deprecated.
|
private EventHandler<? super SwipeEvent> |
SceneBuilder.onSwipeUp
Deprecated.
|
private EventHandler<? super TouchEvent> |
NodeBuilder.onTouchMoved
Deprecated.
|
private EventHandler<? super TouchEvent> |
SceneBuilder.onTouchMoved
Deprecated.
|
private EventHandler<? super TouchEvent> |
NodeBuilder.onTouchPressed
Deprecated.
|
private EventHandler<? super TouchEvent> |
SceneBuilder.onTouchPressed
Deprecated.
|
private EventHandler<? super TouchEvent> |
NodeBuilder.onTouchReleased
Deprecated.
|
private EventHandler<? super TouchEvent> |
SceneBuilder.onTouchReleased
Deprecated.
|
private EventHandler<? super TouchEvent> |
NodeBuilder.onTouchStationary
Deprecated.
|
private EventHandler<? super TouchEvent> |
SceneBuilder.onTouchStationary
Deprecated.
|
private EventHandler<? super ZoomEvent> |
NodeBuilder.onZoom
Deprecated.
|
private EventHandler<? super ZoomEvent> |
SceneBuilder.onZoom
Deprecated.
|
private EventHandler<? super ZoomEvent> |
NodeBuilder.onZoomFinished
Deprecated.
|
private EventHandler<? super ZoomEvent> |
SceneBuilder.onZoomFinished
Deprecated.
|
private EventHandler<? super ZoomEvent> |
NodeBuilder.onZoomStarted
Deprecated.
|
private EventHandler<? super ZoomEvent> |
SceneBuilder.onZoomStarted
Deprecated.
|
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 |
---|---|
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 ContextMenuEvent>> |
Scene.onContextMenuRequestedProperty() |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onDragDetectedProperty()
Defines a function to be called when drag gesture has been
detected.
|
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onDragDetectedProperty() |
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.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.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.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.onDragEnteredProperty()
Defines a function to be called when drag gesture
enters this
Node . |
ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragEnteredProperty()
Defines a function to be called when drag gesture
enters 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.onDragExitedProperty()
Defines a function to be called when drag gesture
exits this
Scene . |
ObjectProperty<EventHandler<? super DragEvent>> |
Node.onDragOverProperty()
Defines a function to be called when drag gesture progresses within
this
Node . |
ObjectProperty<EventHandler<? super DragEvent>> |
Scene.onDragOverProperty()
Defines a function to be called when drag gesture progresses
within this
Scene . |
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 InputMethodEvent>> |
Scene.onInputMethodTextChangedProperty() |
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.onKeyPressedProperty() |
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.onKeyReleasedProperty() |
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 KeyEvent>> |
Scene.onKeyTypedProperty() |
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 MouseEvent>> |
Scene.onMouseClickedProperty() |
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.onMouseDragEnteredProperty() |
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 MouseDragEvent>> |
Scene.onMouseDragExitedProperty() |
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 MouseEvent>> |
Scene.onMouseDraggedProperty() |
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.onMouseDragOverProperty() |
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 MouseDragEvent>> |
Scene.onMouseDragReleasedProperty() |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onMouseEnteredProperty()
Defines a function to be called when the mouse enters this
Node . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseEnteredProperty() |
ObjectProperty<EventHandler<? super MouseEvent>> |
Node.onMouseExitedProperty()
Defines a function to be called when the mouse exits this
Node . |
ObjectProperty<EventHandler<? super MouseEvent>> |
Scene.onMouseExitedProperty() |
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.onMouseMovedProperty() |
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.onMousePressedProperty() |
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 MouseEvent>> |
Scene.onMouseReleasedProperty() |
ObjectProperty<EventHandler<? super RotateEvent>> |
Node.onRotateProperty()
Defines a function to be called when user performs a rotation action.
|
ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotateProperty() |
ObjectProperty<EventHandler<? super RotateEvent>> |
Node.onRotationFinishedProperty()
Defines a function to be called when a rotation gesture ends.
|
ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotationFinishedProperty() |
ObjectProperty<EventHandler<? super RotateEvent>> |
Node.onRotationStartedProperty()
Defines a function to be called when a rotation gesture is detected.
|
ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotationStartedProperty() |
ObjectProperty<EventHandler<? super ScrollEvent>> |
Node.onScrollFinishedProperty()
Defines a function to be called when a scrolling gesture ends.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScrollFinishedProperty() |
ObjectProperty<EventHandler<? super ScrollEvent>> |
Node.onScrollProperty()
Defines a function to be called when user performs a scrolling action.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScrollProperty() |
ObjectProperty<EventHandler<? super ScrollEvent>> |
Node.onScrollStartedProperty()
Defines a function to be called when a scrolling gesture is detected.
|
ObjectProperty<EventHandler<? super ScrollEvent>> |
Scene.onScrollStartedProperty() |
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.onSwipeDownProperty() |
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.onSwipeLeftProperty() |
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.onSwipeRightProperty() |
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 SwipeEvent>> |
Scene.onSwipeUpProperty() |
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchMovedProperty()
Defines a function to be called when a touch point is moved.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchMovedProperty() |
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchPressedProperty()
Defines a function to be called when a new touch point is pressed.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchPressedProperty() |
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchReleasedProperty()
Defines a function to be called when a touch point is released.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchReleasedProperty() |
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchStationaryProperty()
Defines a function to be called when a touch point stays pressed and
still.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchStationaryProperty() |
ObjectProperty<EventHandler<? super ZoomEvent>> |
Node.onZoomFinishedProperty()
Defines a function to be called when a zooming gesture ends.
|
ObjectProperty<EventHandler<? super ZoomEvent>> |
Scene.onZoomFinishedProperty() |
ObjectProperty<EventHandler<? super ZoomEvent>> |
Node.onZoomProperty()
Defines a function to be called when user performs a zooming action.
|
ObjectProperty<EventHandler<? super ZoomEvent>> |
Scene.onZoomProperty() |
ObjectProperty<EventHandler<? super ZoomEvent>> |
Node.onZoomStartedProperty()
Defines a function to be called when a zooming gesture is detected.
|
ObjectProperty<EventHandler<? super ZoomEvent>> |
Scene.onZoomStartedProperty() |
Modifier and Type | Method and Description |
---|---|
<T extends Event> |
Node.addEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Registers an event filter to this node.
|
<T extends Event> |
Scene.addEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Registers an event filter to this scene.
|
<T extends Event> |
Node.addEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Registers an event handler to this node.
|
<T extends Event> |
Scene.addEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Registers an event handler to this scene.
|
B |
NodeBuilder.onContextMenuRequested(EventHandler<? super ContextMenuEvent> x)
Deprecated.
Set the value of the
onContextMenuRequested property for the instance constructed by this builder. |
B |
SceneBuilder.onContextMenuRequested(EventHandler<? super ContextMenuEvent> x)
Deprecated.
Set the value of the
onContextMenuRequested 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.onDragDetected(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onDragDetected 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.onDragDone(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragDone 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.onDragDropped(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragDropped 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.onDragEntered(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragEntered 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.onDragExited(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragExited 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.onDragOver(EventHandler<? super DragEvent> x)
Deprecated.
Set the value of the
onDragOver 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.onInputMethodTextChanged(EventHandler<? super InputMethodEvent> x)
Deprecated.
Set the value of the
onInputMethodTextChanged 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.onKeyPressed(EventHandler<? super KeyEvent> x)
Deprecated.
Set the value of the
onKeyPressed 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.onKeyReleased(EventHandler<? super KeyEvent> x)
Deprecated.
Set the value of the
onKeyReleased 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.onKeyTyped(EventHandler<? super KeyEvent> x)
Deprecated.
Set the value of the
onKeyTyped 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.onMouseClicked(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseClicked 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.onMouseDragEntered(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragEntered 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.onMouseDragExited(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragExited 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.onMouseDragged(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseDragged 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.onMouseDragOver(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragOver 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.onMouseDragReleased(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragReleased 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.onMouseEntered(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseEntered 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.onMouseExited(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseExited 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.onMouseMoved(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseMoved 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.onMousePressed(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMousePressed 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.onMouseReleased(EventHandler<? super MouseEvent> x)
Deprecated.
Set the value of the
onMouseReleased 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.onRotate(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotate 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.onRotationFinished(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotationFinished 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.onRotationStarted(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotationStarted 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.onScroll(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScroll 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.onScrollFinished(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScrollFinished 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.onScrollStarted(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScrollStarted 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.onSwipeDown(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeDown 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.onSwipeLeft(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeLeft 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.onSwipeRight(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeRight 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.onSwipeUp(EventHandler<? super SwipeEvent> x)
Deprecated.
Set the value of the
onSwipeUp 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.onTouchMoved(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchMoved 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.onTouchPressed(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchPressed 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.onTouchReleased(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchReleased 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.onTouchStationary(EventHandler<? super TouchEvent> x)
Deprecated.
Set the value of the
onTouchStationary 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.onZoom(EventHandler<? super ZoomEvent> x)
Deprecated.
Set the value of the
onZoom 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.onZoomFinished(EventHandler<? super ZoomEvent> x)
Deprecated.
Set the value of the
onZoomFinished 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. |
B |
SceneBuilder.onZoomStarted(EventHandler<? super ZoomEvent> x)
Deprecated.
Set the value of the
onZoomStarted property for the instance constructed by this builder. |
<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.removeEventFilter(EventType<T> eventType,
EventHandler<? super T> eventFilter)
Unregisters a previously registered event filter from this scene.
|
<T extends Event> |
Node.removeEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Unregisters a previously registered event handler from this node.
|
<T extends Event> |
Scene.removeEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Unregisters a previously registered event handler from this scene.
|
protected <T extends Event> |
Node.setEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Sets the handler to use for this event type.
|
protected <T extends Event> |
Scene.setEventHandler(EventType<T> eventType,
EventHandler<? super T> eventHandler)
Sets the handler to use for this event type.
|
void |
Node.setOnContextMenuRequested(EventHandler<? super ContextMenuEvent> value) |
void |
Scene.setOnContextMenuRequested(EventHandler<? super ContextMenuEvent> value) |
void |
Node.setOnDragDetected(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnDragDetected(EventHandler<? super MouseEvent> value) |
void |
Node.setOnDragDone(EventHandler<? super DragEvent> value) |
void |
Scene.setOnDragDone(EventHandler<? super DragEvent> value) |
void |
Node.setOnDragDropped(EventHandler<? super DragEvent> value) |
void |
Scene.setOnDragDropped(EventHandler<? super DragEvent> value) |
void |
Node.setOnDragEntered(EventHandler<? super DragEvent> value) |
void |
Scene.setOnDragEntered(EventHandler<? super DragEvent> value) |
void |
Node.setOnDragExited(EventHandler<? super DragEvent> value) |
void |
Scene.setOnDragExited(EventHandler<? super DragEvent> value) |
void |
Node.setOnDragOver(EventHandler<? super DragEvent> value) |
void |
Scene.setOnDragOver(EventHandler<? super DragEvent> value) |
void |
Node.setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value) |
void |
Scene.setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value) |
void |
Node.setOnKeyPressed(EventHandler<? super KeyEvent> value) |
void |
Scene.setOnKeyPressed(EventHandler<? super KeyEvent> value) |
void |
Node.setOnKeyReleased(EventHandler<? super KeyEvent> value) |
void |
Scene.setOnKeyReleased(EventHandler<? super KeyEvent> value) |
void |
Node.setOnKeyTyped(EventHandler<? super KeyEvent> value) |
void |
Scene.setOnKeyTyped(EventHandler<? super KeyEvent> value) |
void |
Node.setOnMouseClicked(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMouseClicked(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMouseDragEntered(EventHandler<? super MouseDragEvent> value) |
void |
Scene.setOnMouseDragEntered(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseDragExited(EventHandler<? super MouseDragEvent> value) |
void |
Scene.setOnMouseDragExited(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseDragged(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMouseDragged(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMouseDragOver(EventHandler<? super MouseDragEvent> value) |
void |
Scene.setOnMouseDragOver(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseDragReleased(EventHandler<? super MouseDragEvent> value) |
void |
Scene.setOnMouseDragReleased(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseEntered(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMouseEntered(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMouseExited(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMouseExited(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMouseMoved(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMouseMoved(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMousePressed(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMousePressed(EventHandler<? super MouseEvent> value) |
void |
Node.setOnMouseReleased(EventHandler<? super MouseEvent> value) |
void |
Scene.setOnMouseReleased(EventHandler<? super MouseEvent> value) |
void |
Node.setOnRotate(EventHandler<? super RotateEvent> value) |
void |
Scene.setOnRotate(EventHandler<? super RotateEvent> value) |
void |
Node.setOnRotationFinished(EventHandler<? super RotateEvent> value) |
void |
Scene.setOnRotationFinished(EventHandler<? super RotateEvent> value) |
void |
Node.setOnRotationStarted(EventHandler<? super RotateEvent> value) |
void |
Scene.setOnRotationStarted(EventHandler<? super RotateEvent> value) |
void |
Node.setOnScroll(EventHandler<? super ScrollEvent> value) |
void |
Scene.setOnScroll(EventHandler<? super ScrollEvent> value) |
void |
Node.setOnScrollFinished(EventHandler<? super ScrollEvent> value) |
void |
Scene.setOnScrollFinished(EventHandler<? super ScrollEvent> value) |
void |
Node.setOnScrollStarted(EventHandler<? super ScrollEvent> value) |
void |
Scene.setOnScrollStarted(EventHandler<? super ScrollEvent> value) |
void |
Node.setOnSwipeDown(EventHandler<? super SwipeEvent> value) |
void |
Scene.setOnSwipeDown(EventHandler<? super SwipeEvent> value) |
void |
Node.setOnSwipeLeft(EventHandler<? super SwipeEvent> value) |
void |
Scene.setOnSwipeLeft(EventHandler<? super SwipeEvent> value) |
void |
Node.setOnSwipeRight(EventHandler<? super SwipeEvent> value) |
void |
Scene.setOnSwipeRight(EventHandler<? super SwipeEvent> value) |
void |
Node.setOnSwipeUp(EventHandler<? super SwipeEvent> value) |
void |
Scene.setOnSwipeUp(EventHandler<? super SwipeEvent> value) |
void |
Node.setOnTouchMoved(EventHandler<? super TouchEvent> value) |
void |
Scene.setOnTouchMoved(EventHandler<? super TouchEvent> value) |
void |
Node.setOnTouchPressed(EventHandler<? super TouchEvent> value) |
void |
Scene.setOnTouchPressed(EventHandler<? super TouchEvent> value) |
void |
Node.setOnTouchReleased(EventHandler<? super TouchEvent> value) |
void |
Scene.setOnTouchReleased(EventHandler<? super TouchEvent> value) |
void |
Node.setOnTouchStationary(EventHandler<? super TouchEvent> value) |
void |
Scene.setOnTouchStationary(EventHandler<? super TouchEvent> value) |
void |
Node.setOnZoom(EventHandler<? super ZoomEvent> value) |
void |
Scene.setOnZoom(EventHandler<? super ZoomEvent> value) |
void |
Node.setOnZoomFinished(EventHandler<? super ZoomEvent> value) |
void |
Scene.setOnZoomFinished(EventHandler<? super ZoomEvent> value) |
void |
Node.setOnZoomStarted(EventHandler<? super ZoomEvent> value) |
void |
Scene.setOnZoomStarted(EventHandler<? super ZoomEvent> value) |
Modifier and Type | Field and Description |
---|---|
private static EventHandler<ContextMenuEvent> |
Control.contextMenuHandler
Handles context menu requests by popping up the menu.
|
private EventHandler<TableColumn.CellEditEvent<S,T>> |
TableColumn.DEFAULT_EDIT_COMMIT_HANDLER
*
Listeners *
*
|
private EventHandler<ListView.EditEvent<T>> |
ListView.DEFAULT_EDIT_COMMIT_HANDLER
*
Callbacks and Events *
*
|
private EventHandler<TreeTableColumn.CellEditEvent<S,T>> |
TreeTableColumn.DEFAULT_EDIT_COMMIT_HANDLER
*
Listeners *
*
|
private EventHandler<TreeItem.TreeModificationEvent<java.lang.Object>> |
TreeItem.itemListener |
private EventHandler<MouseEvent> |
Tooltip.TooltipBehavior.KILL_HANDLER
Registers for mouse click, press, release, drag events.
|
private EventHandler<MouseEvent> |
Tooltip.TooltipBehavior.LEAVING_HANDLER
Registers for mouse exit events.
|
private static EventHandler<MouseEvent> |
SkinBase.mouseEventConsumer
Mouse handler used for consuming all mouse events (preventing them
from bubbling up to parent)
|
private EventHandler<MouseEvent> |
Tooltip.TooltipBehavior.MOVE_HANDLER
Registers for mouse move events only.
|
private EventHandler<ActionEvent> |
MenuItemBuilder.onAction
Deprecated.
|
private EventHandler<ActionEvent> |
ContextMenuBuilder.onAction
Deprecated.
|
private EventHandler<ActionEvent> |
ComboBoxBaseBuilder.onAction
Deprecated.
|
private EventHandler<ActionEvent> |
ButtonBaseBuilder.onAction
Deprecated.
|
private EventHandler<ActionEvent> |
TextFieldBuilder.onAction
Deprecated.
|
private EventHandler<Event> |
TabBuilder.onClosed
Deprecated.
|
private EventHandler<ListView.EditEvent<T>> |
ListViewBuilder.onEditCancel
Deprecated.
|
private EventHandler<TreeView.EditEvent<T>> |
TreeViewBuilder.onEditCancel
Deprecated.
|
private EventHandler<TableColumn.CellEditEvent<S,T>> |
TableColumnBuilder.onEditCancel
Deprecated.
|
private EventHandler<ListView.EditEvent<T>> |
ListViewBuilder.onEditCommit
Deprecated.
|
private EventHandler<TreeView.EditEvent<T>> |
TreeViewBuilder.onEditCommit
Deprecated.
|
private EventHandler<TableColumn.CellEditEvent<S,T>> |
TableColumnBuilder.onEditCommit
Deprecated.
|
private EventHandler<ListView.EditEvent<T>> |
ListViewBuilder.onEditStart
Deprecated.
|
private EventHandler<TreeView.EditEvent<T>> |
TreeViewBuilder.onEditStart
Deprecated.
|
private EventHandler<TableColumn.CellEditEvent<S,T>> |
TableColumnBuilder.onEditStart
Deprecated.
|
private EventHandler<Event> |
MenuBuilder.onHidden
Deprecated.
|
private EventHandler<Event> |
ComboBoxBaseBuilder.onHidden
Deprecated.
|
private EventHandler<Event> |
MenuBuilder.onHiding
Deprecated.
|
private EventHandler<Event> |
ComboBoxBaseBuilder.onHiding
Deprecated.
|
private EventHandler<Event> |
MenuItemBuilder.onMenuValidation
Deprecated.
|
private EventHandler<Event> |
TabBuilder.onSelectionChanged
Deprecated.
|
private EventHandler<Event> |
MenuBuilder.onShowing
Deprecated.
|
private EventHandler<Event> |
ComboBoxBaseBuilder.onShowing
Deprecated.
|
private EventHandler<Event> |
MenuBuilder.onShown
Deprecated.
|
private EventHandler<Event> |
ComboBoxBaseBuilder.onShown
Deprecated.
|
private EventHandler<TreeItem.TreeModificationEvent<T>> |
TreeView.rootEvent
*
Callbacks and Events *
*
|
private EventHandler<TreeItem.TreeModificationEvent<S>> |
TreeTableView.rootEvent
*
Callbacks and Events *
*
|
private EventHandler<TreeItem.TreeModificationEvent<T>> |
TreeView.TreeViewBitSetSelectionModel.treeItemListener |
private EventHandler<TreeItem.TreeModificationEvent<T>> |
TreeView.TreeViewFocusModel.treeItemListener |
private EventHandler<TreeItem.TreeModificationEvent<S>> |
TreeTableView.TreeTableViewArrayListSelectionModel.treeItemListener |
private EventHandler<TreeItem.TreeModificationEvent<S>> |
TreeTableView.TreeTableViewFocusModel.treeItemListener |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<EventHandler<ActionEvent>> |
ContextMenu.onAction
Callback function to be informed when an item contained within this
ContextMenu has been activated. |
private ObjectProperty<EventHandler<ActionEvent>> |
ComboBoxBase.onAction |
private ObjectProperty<EventHandler<ActionEvent>> |
TextField.onAction
The action handler associated with this text field, or
null if no action handler is assigned.
|
private ObjectProperty<EventHandler<ActionEvent>> |
ChoiceBox.onAction |
private ObjectProperty<EventHandler<ActionEvent>> |
ButtonBase.onAction |
private ObjectProperty<EventHandler<ActionEvent>> |
MenuItem.onAction
The action, which is invoked whenever the MenuItem is fired.
|
private ObjectProperty<EventHandler<Event>> |
Tab.onClosed |
private ObjectProperty<EventHandler<DialogEvent>> |
Dialog.onCloseRequest
Called when there is an external request to close this
Dialog . |
private ObjectProperty<EventHandler<Event>> |
Tab.onCloseRequest
Called when there is an external request to close this
Tab . |
private ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> |
TableColumn.onEditCancel |
private ObjectProperty<EventHandler<TreeView.EditEvent<T>>> |
TreeView.onEditCancel |
private ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditCancel |
private ObjectProperty<EventHandler<TreeTableColumn.CellEditEvent<S,T>>> |
TreeTableColumn.onEditCancel
This event handler will be fired when the user cancels editing a cell.
|
private ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> |
TableColumn.onEditCommit |
private ObjectProperty<EventHandler<TreeView.EditEvent<T>>> |
TreeView.onEditCommit |
private ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditCommit |
private ObjectProperty<EventHandler<TreeTableColumn.CellEditEvent<S,T>>> |
TreeTableColumn.onEditCommit
This event handler will be fired when the user successfully commits their
editing.
|
private ObjectProperty<EventHandler<TableColumn.CellEditEvent<S,T>>> |
TableColumn.onEditStart |
private ObjectProperty<EventHandler<TreeView.EditEvent<T>>> |
TreeView.onEditStart |
private ObjectProperty<EventHandler<ListView.EditEvent<T>>> |
ListView.onEditStart |
private ObjectProperty<EventHandler<TreeTableColumn.CellEditEvent<S,T>>> |
TreeTableColumn.onEditStart
This event handler will be fired when the user successfully initiates
editing.
|
private ObjectProperty<EventHandler<Event>> |
Menu.onHidden |
private ObjectProperty<EventHandler<DialogEvent>> |
Dialog.onHidden
Called just after the Dialog has been hidden.
|
private ObjectProperty<EventHandler<Event>> |
ComboBoxBase.onHidden
Called just after the
ComboBoxBase popup/display has been hidden. |
private ObjectProperty<EventHandler<Event>> |
ChoiceBox.onHidden |
private ObjectProperty<EventHandler<Event>> |
Menu.onHiding |
private ObjectProperty<EventHandler<DialogEvent>> |
Dialog.onHiding
Called just prior to the Dialog being hidden.
|
private ObjectProperty<EventHandler<Event>> |
ComboBoxBase.onHiding
Called just prior to the
ComboBox popup/display being hidden. |
private ObjectProperty<EventHandler<Event>> |
ChoiceBox.onHiding |
private ObjectProperty<EventHandler<Event>> |
MenuItem.onMenuValidation
The event handler that is associated with invocation of an accelerator for a MenuItem.
|
private ObjectProperty<EventHandler<ScrollToEvent<java.lang.Integer>>> |
TableView.onScrollTo
Called when there's a request to scroll an index into view using
TableView.scrollTo(int)
or TableView.scrollTo(Object) |
private ObjectProperty<EventHandler<ScrollToEvent<java.lang.Integer>>> |
TreeView.onScrollTo
Called when there's a request to scroll an index into view using
TreeView.scrollTo(int) |
private ObjectProperty<EventHandler<ScrollToEvent<java.lang.Integer>>> |
TreeTableView.onScrollTo
Called when there's a request to scroll an index into view using
TreeTableView.scrollTo(int) |
private ObjectProperty<EventHandler<ScrollToEvent<java.lang.Integer>>> |
ListView.onScrollTo
Called when there's a request to scroll an index into view using
ListView.scrollTo(int)
or ListView.scrollTo(Object) |
private ObjectProperty<EventHandler<ScrollToEvent<TableColumn<S,?>>>> |
TableView.onScrollToColumn
Called when there's a request to scroll a column into view using
TableView.scrollToColumn(TableColumn)
or TableView.scrollToColumnIndex(int) |
private ObjectProperty<EventHandler<ScrollToEvent<TreeTableColumn<S,?>>>> |
TreeTableView.onScrollToColumn
Called when there's a request to scroll a column into view using
TreeTableView.scrollToColumn(TreeTableColumn)
or TreeTableView.scrollToColumnIndex(int) |
private ObjectProperty<EventHandler<Event>> |
Tab.onSelectionChanged |
private ObjectProperty<EventHandler<Event>> |
Menu.onShowing |
private ObjectProperty<EventHandler<DialogEvent>> |
Dialog.onShowing
Called just prior to the Dialog being shown.
|
private ObjectProperty<EventHandler<Event>> |
ComboBoxBase.onShowing
Called just prior to the
ComboBoxBase popup/display being shown. |
private ObjectProperty<EventHandler<Event>> |
ChoiceBox.onShowing |
private ObjectProperty<EventHandler<Event>> |
Menu.onShown |
private ObjectProperty<EventHandler<DialogEvent>> |
Dialog.onShown
Called just after the Dialog is shown.
|
private ObjectProperty<EventHandler<Event>> |
ComboBoxBase.onShown
Called just after the
ComboBoxBase popup/display is shown. |
private ObjectProperty<EventHandler<Event>> |
ChoiceBox.onShown |
private ObjectProperty<EventHandler<SortEvent<TableView<S>>>> |
TableView.onSort
Called when there's a request to sort the control.
|
private ObjectProperty<EventHandler<SortEvent<TreeTableView<S>>>> |
TreeTableView.onSort
Called when there's a request to sort the control.
|
Modifier and Type | Method and Description |
---|---|
<E extends Event> |
Menu.addEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Registers an event handler to this MenuItem.
|
<E extends Event> |
TableColumnBase.addEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Registers an event handler to this table column.
|
<E extends Event> |
TreeItem.addEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Registers an event handler to this TreeItem.
|
<E extends Event> |
MenuItem.addEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Registers an event handler to this MenuItem.
|
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 |
TextFieldBuilder.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> |
Menu.removeEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Unregisters a previously registered event handler from this MenuItem.
|
<E extends Event> |
TableColumnBase.removeEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Unregisters a previously registered event handler from this table column.
|
<E extends Event> |
TreeItem.removeEventHandler(EventType<E> eventType,
EventHandler<E> eventHandler)
Unregisters a previously registered event handler from this TreeItem.
|
<E extends Event> |
MenuItem.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 |
ContextMenu.setOnAction(EventHandler<ActionEvent> value) |
void |
ComboBoxBase.setOnAction(EventHandler<ActionEvent> value) |
void |
TextField.setOnAction(EventHandler<ActionEvent> value) |
void |
ChoiceBox.setOnAction(EventHandler<ActionEvent> value) |
void |
ButtonBase.setOnAction(EventHandler<ActionEvent> value) |
void |
MenuItem.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 |
TableView.setOnScrollTo(EventHandler<ScrollToEvent<java.lang.Integer>> value) |
void |
TreeView.setOnScrollTo(EventHandler<ScrollToEvent<java.lang.Integer>> value) |
void |
TreeTableView.setOnScrollTo(EventHandler<ScrollToEvent<java.lang.Integer>> value) |
void |
ListView.setOnScrollTo(EventHandler<ScrollToEvent<java.lang.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 | Field and Description |
---|---|
private EventHandler<MediaErrorEvent> |
MediaViewBuilder.onError
Deprecated.
|
private EventHandler<MediaMarkerEvent> |
MediaPlayerBuilder.onMarker
Deprecated.
|
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() |
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 | Field and Description |
---|---|
private ObjectProperty<EventHandler<? super TransformChangedEvent>> |
Transform.onTransformChanged |
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 | Field and Description |
---|---|
private EventHandler<WebEvent<java.lang.String>> |
WebEngineBuilder.onAlert
Deprecated.
|
private EventHandler<WebEvent<Rectangle2D>> |
WebEngineBuilder.onResized
Deprecated.
|
private EventHandler<WebEvent<java.lang.String>> |
WebEngineBuilder.onStatusChanged
Deprecated.
|
private EventHandler<WebEvent<java.lang.Boolean>> |
WebEngineBuilder.onVisibilityChanged
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<EventHandler<WebEvent<java.lang.String>>> |
WebEngine.onAlert |
private ObjectProperty<EventHandler<WebErrorEvent>> |
WebEngine.onError
The event handler called when an error occurs.
|
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<WebErrorEvent> |
WebEngine.getOnError() |
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<WebErrorEvent>> |
WebEngine.onErrorProperty() |
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 |
---|---|
WebEngineBuilder |
WebEngineBuilder.onAlert(EventHandler<WebEvent<java.lang.String>> value)
Deprecated.
Sets the
onAlert
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.onAlert(EventHandler<WebEvent<java.lang.String>> value)
Deprecated.
|
WebEngineBuilder |
WebEngineBuilder.onResized(EventHandler<WebEvent<Rectangle2D>> value)
Deprecated.
Sets the
onResized
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.onResized(EventHandler<WebEvent<Rectangle2D>> value)
Deprecated.
|
WebEngineBuilder |
WebEngineBuilder.onStatusChanged(EventHandler<WebEvent<java.lang.String>> value)
Deprecated.
Sets the
onStatusChanged
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.onStatusChanged(EventHandler<WebEvent<java.lang.String>> value)
Deprecated.
Sets the
onStatusChanged
property for the engine
property of the instance constructed by this builder. |
WebEngineBuilder |
WebEngineBuilder.onVisibilityChanged(EventHandler<WebEvent<java.lang.Boolean>> value)
Deprecated.
Sets the
onVisibilityChanged
property for the instance constructed by this builder. |
WebViewBuilder |
WebViewBuilder.onVisibilityChanged(EventHandler<WebEvent<java.lang.Boolean>> value)
Deprecated.
Sets the
onVisibilityChanged
property for the engine
property of the instance constructed by this builder. |
void |
WebEngine.setOnAlert(EventHandler<WebEvent<java.lang.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<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
Deprecated.
|
private EventHandler<WindowEvent> |
WindowBuilder.onCloseRequest
Deprecated.
|
private EventHandler<WindowEvent> |
WindowBuilder.onHidden
Deprecated.
|
private EventHandler<WindowEvent> |
WindowBuilder.onHiding
Deprecated.
|
private EventHandler<WindowEvent> |
WindowBuilder.onShowing
Deprecated.
|
private EventHandler<WindowEvent> |
WindowBuilder.onShown
Deprecated.
|
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() |
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) |