Package | Description |
---|---|
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.
|
Modifier and Type | Field and Description |
---|---|
static EventType<DialogEvent> |
DialogEvent.ANY
Common supertype for all dialog event types.
|
static EventType<DialogEvent> |
DialogEvent.DIALOG_CLOSE_REQUEST
This event is delivered to a
dialog when there is an external request to close that dialog.
|
static EventType<DialogEvent> |
DialogEvent.DIALOG_HIDDEN
This event occurs on dialog just after it is hidden.
|
static EventType<DialogEvent> |
DialogEvent.DIALOG_HIDING
This event occurs on dialog just before it is hidden.
|
static EventType<DialogEvent> |
DialogEvent.DIALOG_SHOWING
This event occurs on dialog just before it is shown.
|
static EventType<DialogEvent> |
DialogEvent.DIALOG_SHOWN
This event occurs on dialog just after it is shown.
|
Modifier and Type | Method and Description |
---|---|
DialogEvent |
DialogEvent.copyFor(Object newSource,
EventTarget newTarget) |
DialogEvent |
DialogEvent.copyFor(Object newSource,
EventTarget newTarget,
EventType<DialogEvent> type)
Creates a copy of the given event with the given fields substituted.
|
Modifier and Type | Method and Description |
---|---|
EventType<DialogEvent> |
DialogEvent.getEventType() |
EventHandler<DialogEvent> |
Dialog.getOnCloseRequest()
Gets the value of the property onCloseRequest.
|
EventHandler<DialogEvent> |
Dialog.getOnHidden()
Gets the value of the property onHidden.
|
EventHandler<DialogEvent> |
Dialog.getOnHiding()
Gets the value of the property onHiding.
|
EventHandler<DialogEvent> |
Dialog.getOnShowing()
Gets the value of the property onShowing.
|
EventHandler<DialogEvent> |
Dialog.getOnShown()
Gets the value of the property onShown.
|
ObjectProperty<EventHandler<DialogEvent>> |
Dialog.onCloseRequestProperty()
Called when there is an external request to close this
Dialog . |
ObjectProperty<EventHandler<DialogEvent>> |
Dialog.onHiddenProperty()
Called just after the Dialog has been hidden.
|
ObjectProperty<EventHandler<DialogEvent>> |
Dialog.onHidingProperty()
Called just prior to the Dialog being hidden.
|
ObjectProperty<EventHandler<DialogEvent>> |
Dialog.onShowingProperty()
Called just prior to the Dialog being shown.
|
ObjectProperty<EventHandler<DialogEvent>> |
Dialog.onShownProperty()
Called just after the Dialog is shown.
|
Modifier and Type | Method and Description |
---|---|
DialogEvent |
DialogEvent.copyFor(Object newSource,
EventTarget newTarget,
EventType<DialogEvent> type)
Creates a copy of the given event with the given fields substituted.
|
void |
Dialog.setOnCloseRequest(EventHandler<DialogEvent> value)
Sets the value of the property onCloseRequest.
|
void |
Dialog.setOnHidden(EventHandler<DialogEvent> value)
Sets the value of the property onHidden.
|
void |
Dialog.setOnHiding(EventHandler<DialogEvent> value)
Sets the value of the property onHiding.
|
void |
Dialog.setOnShowing(EventHandler<DialogEvent> value)
Sets the value of the property onShowing.
|
void |
Dialog.setOnShown(EventHandler<DialogEvent> value)
Sets the value of the property onShown.
|
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.