scalafx.beans

property

package property

Wraps javafx.beans.property package.

Source
package.scala
Linear Supertypes
Content Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. property
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class BooleanProperty extends ReadOnlyBooleanProperty with Property[Boolean, Boolean] with SFXDelegate[javafx.beans.property.BooleanProperty]

  2. class DoubleProperty extends ReadOnlyDoubleProperty with Property[Double, Number] with SFXDelegate[javafx.beans.property.DoubleProperty]

  3. class FloatProperty extends ReadOnlyFloatProperty with Property[Float, Number] with SFXDelegate[javafx.beans.property.FloatProperty]

  4. class IntegerProperty extends ReadOnlyIntegerProperty with Property[Int, Number] with SFXDelegate[javafx.beans.property.IntegerProperty]

  5. class LongProperty extends ReadOnlyLongProperty with Property[Long, Number] with SFXDelegate[javafx.beans.property.LongProperty]

  6. trait LowerPriorityIncludes extends AnyRef

  7. class ObjectProperty[T] extends ReadOnlyObjectProperty[T] with Property[T, T] with SFXDelegate[javafx.beans.property.ObjectProperty[T]]

    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.

  8. trait Property[T, J] extends ReadOnlyProperty[T, J] with SFXDelegate[javafx.beans.property.Property[J]]

    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.

    T

    Indicates Scala type that will be returned for this property.

    J

    Indicates Java type to be wrapped by T. Eventually T and J could be the same.

  9. trait PropertyIncludes extends LowerPriorityIncludes

    Contains implicit methods to convert from javafx.beans.property Classes to their ScalaFX counterparts.

  10. class ReadOnlyBooleanProperty extends BooleanExpression with ReadOnlyProperty[Boolean, Boolean] with SFXDelegate[javafx.beans.property.ReadOnlyBooleanProperty]

  11. class ReadOnlyBooleanWrapper extends BooleanProperty with SFXDelegate[javafx.beans.property.ReadOnlyBooleanWrapper]

    Wrapper for javafx.beans.property.ReadOnlyBooleanWrapper

  12. class ReadOnlyDoubleProperty extends NumberExpression with ReadOnlyProperty[Double, Number] with SFXDelegate[javafx.beans.property.ReadOnlyDoubleProperty]

  13. class ReadOnlyDoubleWrapper extends DoubleProperty with SFXDelegate[javafx.beans.property.ReadOnlyDoubleWrapper]

    Wrapper for javafx.beans.property.ReadOnlyDoubleWrapper

  14. class ReadOnlyFloatProperty extends NumberExpression with ReadOnlyProperty[Float, Number] with SFXDelegate[javafx.beans.property.ReadOnlyFloatProperty]

  15. class ReadOnlyFloatWrapper extends FloatProperty with SFXDelegate[javafx.beans.property.ReadOnlyFloatWrapper]

    Wrapper for javafx.beans.property.ReadOnlyFloatWrapper

  16. class ReadOnlyIntegerProperty extends NumberExpression with ReadOnlyProperty[Int, Number] with SFXDelegate[javafx.beans.property.ReadOnlyIntegerProperty]

  17. class ReadOnlyIntegerWrapper extends IntegerProperty with SFXDelegate[javafx.beans.property.ReadOnlyIntegerWrapper]

    Wrapper for javafx.beans.property.ReadOnlyIntegerWrapper

  18. class ReadOnlyLongProperty extends NumberExpression with ReadOnlyProperty[Long, Number] with SFXDelegate[javafx.beans.property.ReadOnlyLongProperty]

  19. class ReadOnlyLongWrapper extends LongProperty with SFXDelegate[javafx.beans.property.ReadOnlyLongWrapper]

    Wrapper for javafx.beans.property.ReadOnlyLongWrapper

  20. class ReadOnlyObjectProperty[T] extends ObjectExpression[T] with ReadOnlyProperty[T, T] with SFXDelegate[javafx.beans.property.ReadOnlyObjectProperty[T]]

  21. class ReadOnlyObjectWrapper[T] extends ObjectProperty[T] with SFXDelegate[javafx.beans.property.ReadOnlyObjectWrapper[T]]

    Wrapper for javafx.beans.property.ReadOnlyObjectWrapper

  22. trait ReadOnlyProperty[T, J] extends ObservableValue[T, J] with SFXDelegate[javafx.beans.property.ReadOnlyProperty[J]]

    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.

    T

    Indicates Scala type that will be returned for this property.

    J

    Indicates Java type to be wrapped by T. Eventually T and J could be the same.

  23. class ReadOnlyStringProperty extends StringExpression with ReadOnlyProperty[String, String] with SFXDelegate[javafx.beans.property.ReadOnlyStringProperty]

  24. class ReadOnlyStringWrapper extends StringProperty with SFXDelegate[javafx.beans.property.ReadOnlyStringWrapper]

    Wrapper for javafx.beans.property.ReadOnlyStringWrapper

  25. class StringProperty extends ReadOnlyStringProperty with Property[String, String] with SFXDelegate[javafx.beans.property.StringProperty]

Inherited from AnyRef

Inherited from Any

Ungrouped