BufferProperty

scalafx.beans.property.BufferProperty
See theBufferProperty companion class

Attributes

Companion
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

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 parameters

value

the initial value

Attributes

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

Creates a new BufferProperty instance.

Creates a new BufferProperty instance.

Value parameters

bean

the bean of this BufferProperty

name

the name of this BufferProperty

Attributes

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

Creates a new BufferProperty instance.

Creates a new BufferProperty instance.

Value parameters

bean

the bean of this BufferProperty

name

the name of this BufferProperty

value

the initial value

Attributes

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 parameters

items

Sequence of elements to assign to BufferProperty value

Attributes

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 parameters

bean

the bean of this BufferProperty

items

Sequence of elements to assign to BufferProperty value

name

the name of this BufferProperty

Attributes

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 parameters

v

ScalaFX BufferProperty

Attributes

Returns

JavaFX ListProperty