scalafx.beans.property

ReadOnlyBooleanWrapper

Related Docs: object ReadOnlyBooleanWrapper | package property

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

Wrapper for javafx.beans.property.ReadOnlyBooleanWrapper

Source
ReadOnlyBooleanWrapper.scala
Linear Supertypes
BooleanProperty, Property[Boolean, Boolean], ReadOnlyBooleanProperty, ReadOnlyProperty[Boolean, Boolean], ObservableValue[Boolean, Boolean], Observable, SFXDelegate[javafx.beans.property.ReadOnlyBooleanWrapper], BooleanExpression, AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
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
Learn more about member selection
Visibility
  1. Public
  2. All

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  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. def finalize(): Unit

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

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

    returns

    The delegate hashcode

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

    Definition Classes
    Any
  26. def name: String

    Returns the name of this property.

    Returns the name of this property.

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

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

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

    Definition Classes
    AnyRef
  30. 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
  31. 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
  32. 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 JavaFX InvalidationListener.

    Definition Classes
    Observable
  33. 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 JavaFX InvalidationListener.

    Definition Classes
    Observable
  34. def readOnlyProperty: ReadOnlyBooleanProperty

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

  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  36. def toString(): String

    returns

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

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

    Definition Classes
    BooleanExpression
  38. 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
  39. 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
  40. 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
  41. def update(v: Boolean): Unit

    Set the wrapped value.

    Set the wrapped value.

    v

    The new value

    Definition Classes
    Property
  42. def value: Boolean

    Returns ObservableValue

    Returns ObservableValue

    returns

    ObservableValue

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

    Set the wrapped value.

    Set the wrapped value.

    v

    The new value

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

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

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

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

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

    Definition Classes
    BooleanExpression

Inherited from BooleanProperty

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.ReadOnlyBooleanWrapper]

Inherited from BooleanExpression

Inherited from AnyRef

Inherited from Any

Ungrouped