BufferExpression

class BufferExpression[E](val delegate: ListExpression[E])

Wraps a JavaFX ListExpression.

Wraps a JavaFX ListExpression.

Companion
object
class Object
trait Matchable
class Any

Value members

Concrete methods

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

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

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

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

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

def retainAll(elem1: E, elem2: E, elems: E*): Boolean
def retainAll(xs: Seq[E]): Boolean
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.

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.

An integer property that represents the size of the buffer.

An integer property that represents the size of the buffer.

def subBuffer(from: Int, to: Int): Buffer[E]

Concrete fields

val delegate: ListExpression[E]