Uses of Class
io.github.sosuisen.jfxbuilder.controls.DialogBuilder
Packages that use DialogBuilder
-
Uses of DialogBuilder in io.github.sosuisen.jfxbuilder.controls
Methods in io.github.sosuisen.jfxbuilder.controls that return DialogBuilderModifier and TypeMethodDescriptionApplies a function to the Dialog instance being constructed.DialogBuilder.contentText
(String contentText) A builder method that invokes thesetContentText
method on the instance being constructed.DialogBuilder.contentTextPropertyApply
(Consumer<StringProperty> op) Applies a function to thecontentTextProperty
of the instance being constructed.static <R> DialogBuilder
<R> DialogBuilder.create()
Returns an instance of theDialogBuilder<R>
.DialogBuilder.dialogPane
(DialogPane value) A builder method that invokes thesetDialogPane
method on the instance being constructed.DialogBuilder.dialogPanePropertyApply
(Consumer<ObjectProperty<DialogPane>> op) Applies a function to thedialogPaneProperty
of the instance being constructed.A builder method that invokes thesetGraphic
method on the instance being constructed.DialogBuilder.graphicPropertyApply
(Consumer<ObjectProperty<Node>> op) Applies a function to thegraphicProperty
of the instance being constructed.DialogBuilder.headerText
(String headerText) A builder method that invokes thesetHeaderText
method on the instance being constructed.DialogBuilder.headerTextPropertyApply
(Consumer<StringProperty> op) Applies a function to theheaderTextProperty
of the instance being constructed.DialogBuilder.height
(double height) A builder method that invokes thesetHeight
method on the instance being constructed.DialogBuilder.heightPropertyApply
(Consumer<ReadOnlyDoubleProperty> op) Applies a function to theheightProperty
of the instance being constructed.DialogBuilder.onCloseRequest
(EventHandler<DialogEvent> value) A builder method that invokes thesetOnCloseRequest
method on the instance being constructed.DialogBuilder.onCloseRequestPropertyApply
(Consumer<ObjectProperty<EventHandler<DialogEvent>>> op) Applies a function to theonCloseRequestProperty
of the instance being constructed.DialogBuilder.onHidden
(EventHandler<DialogEvent> value) A builder method that invokes thesetOnHidden
method on the instance being constructed.DialogBuilder.onHiddenPropertyApply
(Consumer<ObjectProperty<EventHandler<DialogEvent>>> op) Applies a function to theonHiddenProperty
of the instance being constructed.DialogBuilder.onHiding
(EventHandler<DialogEvent> value) A builder method that invokes thesetOnHiding
method on the instance being constructed.DialogBuilder.onHidingPropertyApply
(Consumer<ObjectProperty<EventHandler<DialogEvent>>> op) Applies a function to theonHidingProperty
of the instance being constructed.DialogBuilder.onShowing
(EventHandler<DialogEvent> value) A builder method that invokes thesetOnShowing
method on the instance being constructed.DialogBuilder.onShowingPropertyApply
(Consumer<ObjectProperty<EventHandler<DialogEvent>>> op) Applies a function to theonShowingProperty
of the instance being constructed.DialogBuilder.onShown
(EventHandler<DialogEvent> value) A builder method that invokes thesetOnShown
method on the instance being constructed.DialogBuilder.onShownPropertyApply
(Consumer<ObjectProperty<EventHandler<DialogEvent>>> op) Applies a function to theonShownProperty
of the instance being constructed.DialogBuilder.resizable
(boolean resizable) A builder method that invokes thesetResizable
method on the instance being constructed.DialogBuilder.resizablePropertyApply
(Consumer<BooleanProperty> op) Applies a function to theresizableProperty
of the instance being constructed.A builder method that invokes thesetResult
method on the instance being constructed.DialogBuilder.resultConverter
(Callback<ButtonType, R> value) A builder method that invokes thesetResultConverter
method on the instance being constructed.DialogBuilder.resultConverterPropertyApply
(Consumer<ObjectProperty<Callback<ButtonType, R>>> op) Applies a function to theresultConverterProperty
of the instance being constructed.DialogBuilder.resultPropertyApply
(Consumer<ObjectProperty<R>> op) Applies a function to theresultProperty
of the instance being constructed.DialogBuilder.showingPropertyApply
(Consumer<ReadOnlyBooleanProperty> op) Applies a function to theshowingProperty
of the instance being constructed.A builder method that invokes thesetTitle
method on the instance being constructed.DialogBuilder.titlePropertyApply
(Consumer<StringProperty> op) Applies a function to thetitleProperty
of the instance being constructed.DialogBuilder.width
(double width) A builder method that invokes thesetWidth
method on the instance being constructed.DialogBuilder.widthPropertyApply
(Consumer<ReadOnlyDoubleProperty> op) Applies a function to thewidthProperty
of the instance being constructed.DialogBuilder.x
(double x) A builder method that invokes thesetX
method on the instance being constructed.DialogBuilder.xPropertyApply
(Consumer<ReadOnlyDoubleProperty> op) Applies a function to thexProperty
of the instance being constructed.DialogBuilder.y
(double y) A builder method that invokes thesetY
method on the instance being constructed.DialogBuilder.yPropertyApply
(Consumer<ReadOnlyDoubleProperty> op) Applies a function to theyProperty
of the instance being constructed.