Packages

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

Source
ReadOnlyBooleanWrapper.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReadOnlyBooleanWrapper
  2. BooleanProperty
  3. Property
  4. ReadOnlyBooleanProperty
  5. ReadOnlyProperty
  6. ObservableValue
  7. Observable
  8. SFXDelegate
  9. BooleanExpression
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ReadOnlyBooleanWrapper(bean: AnyRef, name: String, value: Boolean)

    Creates a new ReadOnlyBooleanWrapper instance.

    Creates a new ReadOnlyBooleanWrapper instance.

    bean

    the bean of this ReadOnlyBooleanWrapper

    name

    the name of this ReadOnlyBooleanWrapper

    value

    the initial value of the wrapped value

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

    Creates a new ReadOnlyBooleanWrapper instance.

    Creates a new ReadOnlyBooleanWrapper instance.

    bean

    the bean of this ReadOnlyBooleanWrapper

    name

    the name of this ReadOnlyBooleanWrapper

  3. new ReadOnlyBooleanWrapper(delegate: javafx.beans.property.ReadOnlyBooleanWrapper = new jfxbp.ReadOnlyBooleanWrapper())

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def &&(v: BooleanExpression): BooleanBinding
    Definition Classes
    BooleanExpression
  4. def &&(v: ObservableBooleanValue): BooleanBinding
    Definition Classes
    BooleanExpression
  5. 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
  6. 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
  7. 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
  8. 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
  9. 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
  10. def =!=(v: BooleanExpression): BooleanBinding
    Definition Classes
    BooleanExpression
  11. def =!=(v: ObservableBooleanValue): BooleanBinding
    Definition Classes
    BooleanExpression
  12. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def ===(v: BooleanExpression): BooleanBinding
    Definition Classes
    BooleanExpression
  14. def ===(v: ObservableBooleanValue): BooleanBinding
    Definition Classes
    BooleanExpression
  15. def apply(): Boolean

    Returns ObservableValue

    Returns ObservableValue

    returns

    ObservableValue

    Definition Classes
    ObservableValue
  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. def bean: AnyRef

    Returns the Object that contains this property.

    Returns the Object that contains this property.

    Definition Classes
    ReadOnlyProperty
  18. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  19. val delegate: javafx.beans.property.ReadOnlyBooleanWrapper

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    ReadOnlyBooleanWrapperBooleanPropertyReadOnlyBooleanPropertySFXDelegateBooleanExpression
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. 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
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def hashCode(): Int

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def name: String

    Returns the name of this property.

    Returns the name of this property.

    Definition Classes
    ReadOnlyProperty
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. 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
  30. 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
  31. 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
  32. 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
  33. def readOnlyProperty: ReadOnlyBooleanProperty

    The read-only property, that is synchronized with this ReadOnlyBooleanWrapper.

  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def toString(): String

    returns

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

    Definition Classes
    SFXDelegate → AnyRef → Any
  36. def unary_!: BooleanBinding
    Definition Classes
    BooleanExpression
  37. 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
  38. 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
  39. 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
  40. def update(v: Boolean): Unit

    Set the wrapped value.

    Set the wrapped value.

    v

    The new value

    Definition Classes
    Property
  41. def value: Boolean

    Returns ObservableValue

    Returns ObservableValue

    returns

    ObservableValue

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

    Set the wrapped value.

    Set the wrapped value.

    v

    The new value

    Definition Classes
    BooleanPropertyProperty
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  46. def ||(v: BooleanExpression): BooleanBinding
    Definition Classes
    BooleanExpression
  47. def ||(v: ObservableBooleanValue): BooleanBinding
    Definition Classes
    BooleanExpression

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from BooleanProperty

Inherited from Property[Boolean, Boolean]

Inherited from Observable

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

Inherited from BooleanExpression

Inherited from AnyRef

Inherited from Any

Ungrouped