Package tools. aqua. bgw. observable. properties
Types
Link copied to clipboard
open class BooleanProperty(initialValue: Boolean = false) : Property<Boolean>
Content copied to clipboard
A BooleanProperty.
Link copied to clipboard
open class DoubleProperty(initialValue: Number = 0.0) : Property<Double>
Content copied to clipboard
A DoubleProperty.
Link copied to clipboard
An IntegerProperty.
Link copied to clipboard
open class LimitedDoubleProperty( lowerBoundInclusive: Number = Double.NEGATIVE_INFINITY, upperBoundInclusive: Number = Double.POSITIVE_INFINITY, initialValue: Number = lowerBoundInclusive) : Property<Double>
Content copied to clipboard
A limited DoubleProperty to a value range. Value will be checked to be in range lowerBoundInclusive to upperBoundInclusive.
Link copied to clipboard
open class ReadonlyBooleanProperty(initialValue: Boolean = false) : ReadonlyProperty<Boolean>
Content copied to clipboard
A ReadonlyBooleanProperty.
Link copied to clipboard
open class ReadonlyDoubleProperty(initialValue: Number = 0.0) : ReadonlyProperty<Double>
Content copied to clipboard
A ReadonlyDoubleProperty.
Link copied to clipboard
open class ReadonlyIntegerProperty(initialValue: Int = 0) : ReadonlyProperty<Int>
Content copied to clipboard
An ReadonlyIntegerProperty.
Link copied to clipboard
Property baseclass providing observable fields.
Link copied to clipboard
open class ReadonlyStringProperty(initialValue: String = "") : ReadonlyProperty<String>
Content copied to clipboard
A ReadonlyStringProperty.
Link copied to clipboard
A StringProperty.