All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.marid.fx.extensions.ExtensionHelpers.kt Maven / Gradle / Ivy

There is a newer version: 0.9.8.10
Show newest version
package org.marid.fx.extensions

import javafx.beans.Observable
import javafx.beans.binding.Bindings.createIntegerBinding
import java.util.concurrent.Callable

internal object ExtensionHelpers {
  fun createIntBinding(callable: Callable, vararg observables: Observable) = createIntegerBinding(callable, *observables)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy