Uses of Class
io.github.palexdev.materialfx.bindings.BiBindingBuilder
Packages that use BiBindingBuilder
-
Uses of BiBindingBuilder in io.github.palexdev.materialfx.bindings
Methods in io.github.palexdev.materialfx.bindings that return BiBindingBuilderModifier and TypeMethodDescription<T> BiBindingBuilder<T>BiBindingManager.bindBidirectional(Property<T> target) Creates and returns a newBiBindingBuilderwith the given target.<T> BiBindingBuilder<T>BiBindingManager.bindBidirectional(ObservableValue<? extends T> target) Creates and returns a newBiBindingBuilderwith the given target.BiBindingBuilder.lazy()Disables the binding eager evaluation mechanism.BiBindingBuilder.override(boolean override) If a binding for the specified target is already present specifies if this builder's targetUpdater must replace the existing one.final BiBindingBuilder<T>BiBindingBuilder.to(Map.Entry<ObservableValue<? extends T>, BiConsumer<T, T>>... sources) Allows adding multiple entries to the map at once.Callsto(ObservableValue, BiConsumer)with the given property.BiBindingBuilder.to(ObservableValue<T> source, BiConsumer<T, T> sourceUpdater) Adds a new entry in the map which associates the given source to the givenBiConsumerthat is responsible for updating the source when needed.BiBindingBuilder.with(BiConsumer<T, T> targetUpdater) Sets theBiConsumerfunction responsible for updating the target when the source changes.BiBindingBuilder.withHelper(BiBindingHelper<T> bindingHelper) Specifies theBiBindingHelperthat will be used for the binding.Methods in io.github.palexdev.materialfx.bindings with parameters of type BiBindingBuilderModifier and TypeMethodDescription<T> BiBindingManagerBiBindingManager.apply(BiBindingBuilder<T> bindingBuilder, BiBindingHelper<T> bindingHelper, boolean override) Creates a bidirectional binding with the given arguments.