Uses of Class
io.github.sosuisen.jfxbuilder.controls.ChoiceDialogBuilder
Packages that use ChoiceDialogBuilder
-
Uses of ChoiceDialogBuilder in io.github.sosuisen.jfxbuilder.controls
Methods in io.github.sosuisen.jfxbuilder.controls that return ChoiceDialogBuilderModifier and TypeMethodDescriptionfinal ChoiceDialogBuilder<T> ChoiceDialogBuilder.addItems(Collection<? extends T> col) Calls theaddAllmethod on the ObservableList returned by theChoiceDialog#getItems()method.final ChoiceDialogBuilder<T> Calls theaddAllmethod on the ObservableList returned by theChoiceDialog#getItems()method.ChoiceDialogBuilder.apply(Consumer<ChoiceDialog<T>> func) Applies a function to the ChoiceDialog instance being constructed.ChoiceDialogBuilder.contentText(String contentText) A builder method that invokes thesetContentTextmethod on the instance being constructed.ChoiceDialogBuilder.contentTextPropertyApply(Consumer<StringProperty> op) Applies a function to thecontentTextPropertyof the instance being constructed.static <T> ChoiceDialogBuilder<T> ChoiceDialogBuilder.create()Returns an instance of theChoiceDialogBuilder<T>.static <T> ChoiceDialogBuilder<T> ChoiceDialogBuilder.create(T defaultChoice, Collection<T> choices) Accepts the constructor arguments ofChoiceDialog(T, Collection)and returns an instance ofChoiceDialogBuilder<T>.static <T> ChoiceDialogBuilder<T> ChoiceDialogBuilder.create(T defaultChoice, T... choices) Accepts the constructor arguments ofChoiceDialog(T, T...)and returns an instance ofChoiceDialogBuilder<T>.ChoiceDialogBuilder.dialogPane(DialogPane value) A builder method that invokes thesetDialogPanemethod on the instance being constructed.ChoiceDialogBuilder.dialogPanePropertyApply(Consumer<ObjectProperty<DialogPane>> op) Applies a function to thedialogPanePropertyof the instance being constructed.A builder method that invokes thesetGraphicmethod on the instance being constructed.ChoiceDialogBuilder.graphicPropertyApply(Consumer<ObjectProperty<Node>> op) Applies a function to thegraphicPropertyof the instance being constructed.ChoiceDialogBuilder.headerText(String headerText) A builder method that invokes thesetHeaderTextmethod on the instance being constructed.ChoiceDialogBuilder.headerTextPropertyApply(Consumer<StringProperty> op) Applies a function to theheaderTextPropertyof the instance being constructed.ChoiceDialogBuilder.height(double height) A builder method that invokes thesetHeightmethod on the instance being constructed.ChoiceDialogBuilder.heightPropertyApply(Consumer<ReadOnlyDoubleProperty> op) Applies a function to theheightPropertyof the instance being constructed.ChoiceDialogBuilder.onCloseRequest(EventHandler<DialogEvent> value) A builder method that invokes thesetOnCloseRequestmethod on the instance being constructed.ChoiceDialogBuilder.onCloseRequestPropertyApply(Consumer<ObjectProperty<EventHandler<DialogEvent>>> op) Applies a function to theonCloseRequestPropertyof the instance being constructed.ChoiceDialogBuilder.onHidden(EventHandler<DialogEvent> value) A builder method that invokes thesetOnHiddenmethod on the instance being constructed.ChoiceDialogBuilder.onHiddenPropertyApply(Consumer<ObjectProperty<EventHandler<DialogEvent>>> op) Applies a function to theonHiddenPropertyof the instance being constructed.ChoiceDialogBuilder.onHiding(EventHandler<DialogEvent> value) A builder method that invokes thesetOnHidingmethod on the instance being constructed.ChoiceDialogBuilder.onHidingPropertyApply(Consumer<ObjectProperty<EventHandler<DialogEvent>>> op) Applies a function to theonHidingPropertyof the instance being constructed.ChoiceDialogBuilder.onShowing(EventHandler<DialogEvent> value) A builder method that invokes thesetOnShowingmethod on the instance being constructed.ChoiceDialogBuilder.onShowingPropertyApply(Consumer<ObjectProperty<EventHandler<DialogEvent>>> op) Applies a function to theonShowingPropertyof the instance being constructed.ChoiceDialogBuilder.onShown(EventHandler<DialogEvent> value) A builder method that invokes thesetOnShownmethod on the instance being constructed.ChoiceDialogBuilder.onShownPropertyApply(Consumer<ObjectProperty<EventHandler<DialogEvent>>> op) Applies a function to theonShownPropertyof the instance being constructed.ChoiceDialogBuilder.resizable(boolean resizable) A builder method that invokes thesetResizablemethod on the instance being constructed.ChoiceDialogBuilder.resizablePropertyApply(Consumer<BooleanProperty> op) Applies a function to theresizablePropertyof the instance being constructed.A builder method that invokes thesetResultmethod on the instance being constructed.ChoiceDialogBuilder.resultConverter(Callback<ButtonType, T> value) A builder method that invokes thesetResultConvertermethod on the instance being constructed.ChoiceDialogBuilder.resultConverterPropertyApply(Consumer<ObjectProperty<Callback<ButtonType, T>>> op) Applies a function to theresultConverterPropertyof the instance being constructed.ChoiceDialogBuilder.resultPropertyApply(Consumer<ObjectProperty<T>> op) Applies a function to theresultPropertyof the instance being constructed.ChoiceDialogBuilder.selectedItem(T item) A builder method that invokes thesetSelectedItemmethod on the instance being constructed.ChoiceDialogBuilder.selectedItemPropertyApply(Consumer<ReadOnlyObjectProperty<T>> op) Applies a function to theselectedItemPropertyof the instance being constructed.ChoiceDialogBuilder.showingPropertyApply(Consumer<ReadOnlyBooleanProperty> op) Applies a function to theshowingPropertyof the instance being constructed.A builder method that invokes thesetTitlemethod on the instance being constructed.ChoiceDialogBuilder.titlePropertyApply(Consumer<StringProperty> op) Applies a function to thetitlePropertyof the instance being constructed.ChoiceDialogBuilder.width(double width) A builder method that invokes thesetWidthmethod on the instance being constructed.ChoiceDialogBuilder.widthPropertyApply(Consumer<ReadOnlyDoubleProperty> op) Applies a function to thewidthPropertyof the instance being constructed.static <T> ChoiceDialogBuilder<T> ChoiceDialogBuilder.withItems(Collection<? extends T> col) Creates an instance of the builder, then calls theaddAllmethod on the ObservableList returned by theChoiceDialog#getItems()method.static <T> ChoiceDialogBuilder<T> ChoiceDialogBuilder.withItems(T... elements) Creates an instance of the builder, then calls theaddAllmethod on the ObservableList returned by theChoiceDialog#getItems()method.ChoiceDialogBuilder.x(double x) A builder method that invokes thesetXmethod on the instance being constructed.ChoiceDialogBuilder.xPropertyApply(Consumer<ReadOnlyDoubleProperty> op) Applies a function to thexPropertyof the instance being constructed.ChoiceDialogBuilder.y(double y) A builder method that invokes thesetYmethod on the instance being constructed.ChoiceDialogBuilder.yPropertyApply(Consumer<ReadOnlyDoubleProperty> op) Applies a function to theyPropertyof the instance being constructed.