BufferBinding

class BufferBinding[E](val delegate: ListBinding[E]) extends BufferExpression[E] with ObservableValue[ObservableBuffer[E], ObservableList[E]]

Wraps a JavaFX ListBinding.

Wraps a JavaFX ListBinding.

Companion
object
trait ObservableValue[ObservableBuffer[E], ObservableList[E]]
trait SFXDelegate[ObservableValue[ObservableList[E]]]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def value: ObservableBuffer[E]
Definition Classes

Inherited methods

def ++=(xs: Seq[E]): Boolean
Inherited from
BufferExpression
def ++=(elem1: E, elem2: E, elems: E*): Boolean
Inherited from
BufferExpression
def +=(element: E): Boolean
Inherited from
BufferExpression
def --=(xs: Seq[E]): Boolean
Inherited from
BufferExpression
def --=(elem1: E, elem2: E, elems: E*): Boolean
Inherited from
BufferExpression
def -=(element: E): Boolean
Inherited from
BufferExpression

Returns ObservableValue

Returns ObservableValue

Returns

ObservableValue

Inherited from
ObservableValue

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

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

Inherited from
BufferExpression
override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value Params
ref

Object to be compared.

Returns

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

Definition Classes
Inherited from
SFXDelegate
override def hashCode: Int
Returns

The delegate hashcode

Definition Classes
Inherited from
SFXDelegate

Creates a new BooleanBinding that holds true if this list is equal to another ObservableBuffer.

Creates a new BooleanBinding that holds true if this list is equal to another ObservableBuffer.

Value Params
other

the other ObservableList

Returns

the new BooleanBinding

Inherited from
BufferExpression

Creates a new BooleanBinding that holds true if this list is not equal to another ObservableBuffer.

Creates a new BooleanBinding that holds true if this list is not equal to another ObservableBuffer.

Value Params
other

the other ObservableList

Returns

the new BooleanBinding

Inherited from
BufferExpression
def onChange[J1 >: ObservableList[E]](op: => Unit): Subscription

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

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

Value Params
op

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

Returns

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

Inherited from
ObservableValue
def onChange[J1 >: ObservableList[E]](op: (ObservableValue[ObservableBuffer[E], ObservableList[E]], J1, J1) => Unit): Subscription

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

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

Type Params
J1

J superclass.

Value Params
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.

Inherited from
ObservableValue
def onInvalidate(op: => Unit): Subscription

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

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

Value Params
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.

Inherited from
Observable

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

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

Value Params
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.

Inherited from
Observable
def retainAll(xs: Seq[E]): Boolean
Inherited from
BufferExpression
def retainAll(elem1: E, elem2: E, elems: E*): Boolean
Inherited from
BufferExpression
def setAll(xs: Seq[E]): Boolean

Clears the ObservableBuffer and add all elements from the collection.

Clears the ObservableBuffer and add all elements from the collection.

Inherited from
BufferExpression
def setAll(elem1: E, elem2: E, elems: E*): Boolean

Clears the ObservableBuffer and add all the elements passed as var-args.

Clears the ObservableBuffer and add all the elements passed as var-args.

Inherited from
BufferExpression

An integer property that represents the size of the buffer.

An integer property that represents the size of the buffer.

Inherited from
BufferExpression
def subBuffer(from: Int, to: Int): Buffer[E]
Inherited from
BufferExpression
override def toString: String
Returns

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

Definition Classes
Inherited from
SFXDelegate

Concrete fields

override val delegate: ListBinding[E]