Package-level declarations
Types
Link copied to clipboard
class CompositeDirtyProperty(val base: DirtyPropertyBase<Any>) : DirtyProperty<Any> , ObservableValue<Boolean>
CompositeDirtyProperty
Link copied to clipboard
class DirtyBooleanProperty(bean: Any?, name: String, initialValue: Boolean? = null) : BooleanPropertyBase, DirtyProperty<Boolean>
Provides SimpleBooleanProperty functionality with support for flagging changes from a baseline value. See DirtyPropertyBase for details about dirty property functions such as reset() and rebase()
Link copied to clipboard
class DirtyDoubleProperty(bean: Any?, name: String, initialValue: Double? = null) : DoublePropertyBase, DirtyProperty<Double>
Provides SimpleDoubleProperty functionality with support for flagging changes from a baseline value. See DirtyPropertyBase for details about dirty property functions such as reset() and rebase()
Link copied to clipboard
class DirtyIntegerProperty(bean: Any?, name: String, initialValue: Int? = null) : IntegerPropertyBase, DirtyProperty<Int>
Link copied to clipboard
class DirtyLongProperty(bean: Any?, name: String, initialValue: Long? = null) : LongPropertyBase, DirtyProperty<Long>
Link copied to clipboard
class DirtyObjectProperty<T>(bean: Any?, name: String, initialValue: T? = null) : ObjectPropertyBase<T> , DirtyProperty<T>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class DirtyStringProperty(bean: Any?, name: String, initialValue: String? = null) : StringPropertyBase, DirtyProperty<String>