This class provides a full implementation of a Property wrapping an arbitrary Object.
This class provides a full implementation of a Property wrapping an arbitrary Object.
It is recommended, as a work around for Issue 14, to use companion object factory methods to construct new instances, instead of using constructor directly, especially when an initial value is a ScalaFX wrapper, for instance:
import scalafx.scene.Cursor ... val p = ObjectProperty(Cursor.WAIT)
This assumes that will not provide property type but let Scala compiler infer correct one.
Generic trait that defines the methods common to all (writable) properties independent of their type.
Generic trait that defines the methods common to all (writable) properties independent of their type.
Indicates Scala type that will be returned for this property.
Indicates Java type to be wrapped by T. Eventually T and J could be the same.
Contains implicit methods to convert from
javafx.beans.property
Classes to their ScalaFX counterparts.
Wrapper for javafx.beans.property.ReadOnlyBooleanWrapper
Wrapper for javafx.beans.property.ReadOnlyDoubleWrapper
Wrapper for javafx.beans.property.ReadOnlyFloatWrapper
Wrapper for javafx.beans.property.ReadOnlyIntegerWrapper
Wrapper for javafx.beans.property.ReadOnlyLongWrapper
Wrapper for javafx.beans.property.ReadOnlyObjectWrapper
Generic trait that defines the methods common to all readable properties independent of their type.
Generic trait that defines the methods common to all readable properties independent of their type.
Indicates Scala type that will be returned for this property.
Indicates Java type to be wrapped by T. Eventually T and J could be the same.
Wrapper for javafx.beans.property.ReadOnlyStringWrapper
Factory for scalafx.beans.property.ObjectProperty
instances.
Wraps
javafx.beans.property
package.