BufferProperty

Companion
class
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply[E](value: ObservableBuffer[E]): BufferProperty[E]

Creates a new BufferProperty instance using the ObservableBuffer as the value.

Creates a new BufferProperty instance using the ObservableBuffer as the value.

Value Params
value

the initial value

def apply[E](bean: Any, name: String): BufferProperty[E]

Creates a new BufferProperty instance.

Creates a new BufferProperty instance.

Value Params
bean

the bean of this BufferProperty

name

the name of this BufferProperty

def apply[E](bean: Any, name: String, value: ObservableBuffer[E]): BufferProperty[E]

Creates a new BufferProperty instance.

Creates a new BufferProperty instance.

Value Params
bean

the bean of this BufferProperty

name

the name of this BufferProperty

value

the initial value

def apply[E](items: Seq[E]): BufferProperty[E]

Creates a new BufferProperty and a its value from a sequence of elements.

Creates a new BufferProperty and a its value from a sequence of elements.

Value Params
items

Sequence of elements to assign to BufferProperty value

Returns

new BufferProperty from items

def apply[E](bean: Any, name: String, items: Seq[E]): BufferProperty[E]

Creates a new BufferProperty and a its value from a sequence of elements.

Creates a new BufferProperty and a its value from a sequence of elements.

Value Params
bean

the bean of this BufferProperty

items

Sequence of elements to assign to BufferProperty value

name

the name of this BufferProperty

Returns

new BufferProperty from items

Implicits

Implicits

implicit def sfxBufferProperty2jfx[E](v: BufferProperty[E]): ListProperty[E]

Converts a ScalaFX BufferProperty to its JavaFX counterpart ListProperty.

Converts a ScalaFX BufferProperty to its JavaFX counterpart ListProperty.

Value Params
v

ScalaFX BufferProperty

Returns

JavaFX ListProperty