Packages

class MapBinding[K, V] extends MapExpression[K, V] with ObservableValue[ObservableMap[K, V], ObservableMap[K, V]]

Wraps a JavaFX MapBinding.

Source
MapBinding.scala
Linear Supertypes
ObservableValue[ObservableMap[K, V], ObservableMap[K, V]], Observable, SFXDelegate[ObservableValue[ObservableMap[K, V]]], MapExpression[K, V], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MapBinding
  2. ObservableValue
  3. Observable
  4. SFXDelegate
  5. MapExpression
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MapBinding(delegate: javafx.beans.binding.MapBinding[K, V])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++=(m: Map[K, V]): Unit
    Definition Classes
    MapExpression
  4. def +=(kv: (K, V)): V
    Definition Classes
    MapExpression
  5. def -=(key: Any): V
    Definition Classes
    MapExpression
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def apply(): ObservableMap[K, V]

    Returns ObservableValue

    Returns ObservableValue

    returns

    ObservableValue

    Definition Classes
    ObservableValue
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. val delegate: javafx.beans.binding.MapBinding[K, V]
    Definition Classes
    MapBindingSFXDelegateMapExpression
  11. def empty: ReadOnlyBooleanProperty

    A boolean property that is true, if the the map is empty.

    A boolean property that is true, if the the map is empty.

    Definition Classes
    MapExpression
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. 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
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def get(key: K): Option[V]

    Optionally returns the value associated with a key.

    Optionally returns the value associated with a key.

    key

    the key value

    returns

    an option value containing the value associated with key in this $MAP, or None if none exists.

    Definition Classes
    MapExpression
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  18. def isEqualTo(other: ObservableMap[_, _]): BooleanBinding

    Creates a new BooleanBinding that holds true if this map is equal to another ObservableMap.

    Creates a new BooleanBinding that holds true if this map is equal to another ObservableMap.

    other

    the other ObservableMap

    returns

    the new BooleanBinding

    Definition Classes
    MapExpression
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def isNotEqualTo(other: ObservableMap[_, _]): BooleanBinding

    Creates a new BooleanBinding that holds true if this map is not equal to another ObservableMap.

    Creates a new BooleanBinding that holds true if this map is not equal to another ObservableMap.

    other

    the other ObservableMap

    returns

    the new BooleanBinding

    Definition Classes
    MapExpression
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  24. def onChange[J1 >: ObservableMap[K, V]](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
  25. def onChange[J1 >: ObservableMap[K, V]](op: (ObservableValue[ObservableMap[K, V], ObservableMap[K, V]], 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
  26. 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
  27. 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
  28. def size: ReadOnlyIntegerProperty

    An integer property that represents the size of the map.

    An integer property that represents the size of the map.

    Definition Classes
    MapExpression
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String

    returns

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

    Definition Classes
    SFXDelegate → AnyRef → Any
  31. def value: ObservableMap[K, V]

    Returns ObservableValue

    Returns ObservableValue

    returns

    ObservableValue

    Definition Classes
    MapBindingObservableValue
  32. def values(): Iterable[V]
    Definition Classes
    MapExpression
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ObservableValue[ObservableMap[K, V], ObservableMap[K, V]]

Inherited from Observable

Inherited from SFXDelegate[ObservableValue[ObservableMap[K, V]]]

Inherited from MapExpression[K, V]

Inherited from AnyRef

Inherited from Any

Ungrouped