scalafx.beans.property

BooleanProperty

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

Linear Supertypes
Property[Boolean, Boolean], ReadOnlyBooleanProperty, ReadOnlyProperty[Boolean, Boolean], ObservableValue[Boolean, Boolean], Observable, SFXDelegate[javafx.beans.property.BooleanProperty], BooleanExpression, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BooleanProperty
  2. Property
  3. ReadOnlyBooleanProperty
  4. ReadOnlyProperty
  5. ObservableValue
  6. Observable
  7. SFXDelegate
  8. BooleanExpression
  9. AnyRef
  10. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BooleanProperty(bean: AnyRef, name: String, initialValue: Boolean)

  2. new BooleanProperty(bean: AnyRef, name: String)

  3. new BooleanProperty(delegate: javafx.beans.property.BooleanProperty = ...)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def &&(v: BooleanExpression): BooleanBinding

    Definition Classes
    BooleanExpression
  5. def &&(v: ObservableBooleanValue): BooleanBinding

    Definition Classes
    BooleanExpression
  6. def ->(endVal: Boolean): Tweenable[Boolean, Boolean]

    Returns a new scalafx.animation.Tweenable from a End Value.

    Returns a new scalafx.animation.Tweenable from a End Value.

    endVal

    End Value

    returns

    a new Tweenable with this Property and end value passed.

    Definition Classes
    Property
  7. def <==(v: ObservableValue[_ <: Boolean, _ <: Boolean]): Unit

    Create a unidirectional binding for this Property.

    Create a unidirectional binding for this Property.

    v

    ScalaFX ObservableValue this Property should be bound to.

    Definition Classes
    Property
  8. def <==(v: ObservableValue[_ <: Boolean]): Unit

    Create a unidirectional binding for this Property.

    Create a unidirectional binding for this Property.

    v

    JavaFX ObservableValue this Property should be bound to.

    Definition Classes
    Property
  9. def <==>(v: javafx.beans.property.Property[Boolean]): Unit

    Create a bidirectional binding between this Property and another JavaFX Property.

    Create a bidirectional binding between this Property and another JavaFX Property.

    v

    the other JavaFX Property

    Definition Classes
    Property
  10. def <==>(v: Property[Boolean, Boolean]): Unit

    Create a bidirectional binding between this Property and another ScalaFX Property.

    Create a bidirectional binding between this Property and another ScalaFX Property.

    v

    the other ScalaFX Property

    Definition Classes
    Property
  11. def =!=(v: BooleanExpression): BooleanBinding

    Definition Classes
    BooleanExpression
  12. def =!=(v: ObservableBooleanValue): BooleanBinding

    Definition Classes
    BooleanExpression
  13. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  15. def ===(v: BooleanExpression): BooleanBinding

    Definition Classes
    BooleanExpression
  16. def ===(v: ObservableBooleanValue): BooleanBinding

    Definition Classes
    BooleanExpression
  17. def apply(): Boolean

    Returns ObservableValue

    Returns ObservableValue

    returns

    ObservableValue

    Definition Classes
    ObservableValue
  18. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  19. def bean: AnyRef

    Returns the Object that contains this property.

    Returns the Object that contains this property.

    Definition Classes
    ReadOnlyProperty
  20. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. val delegate: javafx.beans.property.BooleanProperty

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    BooleanPropertyReadOnlyBooleanPropertySFXDelegateBooleanExpression
  22. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. def equals(ref: Any): Boolean

    Verifies if a object is equals to this delegate.

    Verifies if a object is equals to this delegate.

    ref

    Object to be compared.

    returns

    if the other object is equals to this delegate or not.

    Definition Classes
    SFXDelegate → AnyRef → Any
  24. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  26. def hashCode(): Int

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  27. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  28. def name: String

    Returns the name of this property.

    Returns the name of this property.

    Definition Classes
    ReadOnlyProperty
  29. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  32. def onChange[J1 >: Boolean](op: ⇒ Unit): Subscription

    Adds a function as a ChangeListener.

    Adds a function as a ChangeListener. This function has no arguments because it will not handle values changed.

    op

    A Function with no arguments. It will be called when value changes.

    returns

    A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

    Definition Classes
    ObservableValue
  33. def onChange[J1 >: Boolean](op: (ObservableValue[Boolean, Boolean], J1, J1) ⇒ Unit): Subscription

    Adds a function as a ChangeListener.

    Adds a function as a ChangeListener. This function has all arguments from T, T) changed method from ChangeListener.

    J1

    J superclass.

    op

    Function that receives a ObservableValue, the old value and the new value. It will be called when value changes.

    returns

    A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

    Definition Classes
    ObservableValue
  34. def onInvalidate(op: ⇒ Unit): Subscription

    Adds a no argument function as a JavaFX InvalidationListener.

    Adds a no argument function as a JavaFX InvalidationListener. This function has no arguments because it will not handle invalidated values.

    op

    A Function with no arguments. It will be called when value was invalidated.

    returns

    A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

    Definition Classes
    Observable
  35. def onInvalidate(op: (Observable) ⇒ Unit): Subscription

    Adds a function as a JavaFX InvalidationListener.

    Adds a function as a JavaFX InvalidationListener. This function has all arguments from invalidated method from InvalidationListener.

    op

    Function that receives a ScalaFX Observable. It will be called when value was invalidated.

    returns

    A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

    Definition Classes
    Observable
  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  37. def toString(): String

    returns

    Returns the original delegate's toString() adding a [SFX] prefix.

    Definition Classes
    SFXDelegate → AnyRef → Any
  38. def unary_!(): BooleanBinding

    Definition Classes
    BooleanExpression
  39. def unbind(v: javafx.beans.property.Property[Boolean]): Unit

    Remove a bidirectional binding between this Property and another JavaFX one.

    Remove a bidirectional binding between this Property and another JavaFX one. If no bidirectional binding between the properties exists, calling this method has no effect.

    v

    - the other Property

    Definition Classes
    Property
  40. def unbind(v: Property[Boolean, Boolean]): Unit

    Remove a bidirectional binding between this Property and another ScalaFX one.

    Remove a bidirectional binding between this Property and another ScalaFX one. If no bidirectional binding between the properties exists, calling this method has no effect.

    v

    - the other Property

    Definition Classes
    Property
  41. def unbind(): Unit

    Remove the unidirectional binding for this Property.

    Remove the unidirectional binding for this Property. If the Property is not bound, calling this method has no effect.

    Definition Classes
    Property
  42. def update(v: Boolean): Unit

    Set the wrapped value.

    Set the wrapped value.

    v

    The new value

    Definition Classes
    Property
  43. def value: Boolean

    Returns ObservableValue

    Returns ObservableValue

    returns

    ObservableValue

    Definition Classes
    ReadOnlyBooleanPropertyObservableValue
  44. def value_=(v: Boolean): Unit

    Set the wrapped value.

    Set the wrapped value.

    v

    The new value

    Definition Classes
    BooleanPropertyProperty
  45. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. def ||(v: BooleanExpression): BooleanBinding

    Definition Classes
    BooleanExpression
  49. def ||(v: ObservableBooleanValue): BooleanBinding

    Definition Classes
    BooleanExpression

Inherited from Property[Boolean, Boolean]

Inherited from ReadOnlyBooleanProperty

Inherited from ReadOnlyProperty[Boolean, Boolean]

Inherited from ObservableValue[Boolean, Boolean]

Inherited from Observable

Inherited from SFXDelegate[javafx.beans.property.BooleanProperty]

Inherited from BooleanExpression

Inherited from AnyRef

Inherited from Any

Ungrouped