BeanIncludes

scalafx.beans.BeanIncludes
See theBeanIncludes companion object

Contains implicit methods to convert from `javafx.beans` Classes to their ScalaFX counterparts.

Attributes

Companion
object
Graph
Supertypes
trait Bindings
class Object
trait Matchable
class Any
Show all
Known subtypes
object BeanIncludes.type
trait Includes
object Includes.type

Members list

Value members

Inherited methods

def add(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

Returns the sum of a collection of JavaFX `ObservableNumberValue`s.

Returns the sum of a collection of JavaFX `ObservableNumberValue`s.

Value parameters

v1

First Value

values

Collection of values

Attributes

Returns

The Value sum.

Inherited from:
Bindings
def createBooleanBinding(func: () => Boolean, dependencies: Observable*): BooleanBinding

Helper function to create a custom BooleanBinding.

Helper function to create a custom BooleanBinding.

Wraps a JavaFX Bindings.createBooleanBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createDoubleBinding(func: () => Double, dependencies: Observable*): DoubleBinding

Helper function to create a custom DoubleBinding.

Helper function to create a custom DoubleBinding.

Wraps a JavaFX Bindings.createDoubleBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createFloatBinding(func: () => Float, dependencies: Observable*): FloatBinding

Helper function to create a custom FloatBinding.

Helper function to create a custom FloatBinding.

Wraps a JavaFX Bindings.createFloatBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createIntegerBinding(func: () => Int, dependencies: Observable*): IntegerBinding

Helper function to create a custom IntegerBinding.

Helper function to create a custom IntegerBinding.

Wraps a JavaFX Bindings.createIntegerBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createLongBinding(func: () => Long, dependencies: Observable*): LongBinding

Helper function to create a custom LongBinding.

Helper function to create a custom LongBinding.

Wraps a JavaFX Bindings.createLongBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createObjectBinding[T](func: () => T, dependencies: Observable*): ObjectBinding[T]

Helper function to create a custom ObjectBinding.

Helper function to create a custom ObjectBinding.

Wraps a JavaFX Bindings.createObjectBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createStringBinding(func: () => String, dependencies: Observable*): StringBinding

Helper function to create a custom StringBinding.

Helper function to create a custom StringBinding.

Wraps a JavaFX Bindings.createStringBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def max(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

Returns the Lowest value among a collection of JavaFX `ObservableNumberValue`s.

Returns the Lowest value among a collection of JavaFX `ObservableNumberValue`s.

Value parameters

v1

First Value

values

Collection of values

Attributes

Returns

The Lowest Value

Inherited from:
Bindings
def min(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

Returns the highest value among a collection of JavaFX `ObservableNumberValue`s.

Returns the highest value among a collection of JavaFX `ObservableNumberValue`s.

Value parameters

v1

First Value

values

Collection of values

Attributes

Returns

The highest Value

Inherited from:
Bindings
def when(condition: => ObservableBooleanValue): ConditionBuilder

Value parameters

condition

Function that returns a JavaFX `ObservableBooleanValue`

Attributes

Returns

A ConditionBuilder wrapping condition.

Inherited from:
Bindings

Implicits

Inherited implicits

implicit def closure2ChangedListener[P, R](cl: (ObservableValue[_ <: P], P, P) => R): ChangeListener[P]

Converts a closure to a JavaFX ChangeListener.

Converts a closure to a JavaFX ChangeListener.

Type parameters

P

Change listener type.

R

closure can have arbitrary return type to make usage easier (last statement in the closure does not have to return Unit). Return value is ignored in generated listener.

Value parameters

cl

Closure to be converted.

Attributes

Returns

a new JavaFX ChangeListener.

Inherited from:
BindingIncludes
implicit def closure2InvalidationListener[R](il: Observable => R): InvalidationListener

Converts a closure to a JavaFX InvalidationListener.

Converts a closure to a JavaFX InvalidationListener.

Type parameters

R

closure can have arbitrary return type to make usage easier (last statement in the closure does not have to return Unit). Return value is ignored in generated listener.

Value parameters

il

Closure to be converted.

Attributes

Returns

a new JavaFX InvalidationListener.

Inherited from:
BindingIncludes
implicit def closureSFX2InvalidationListener[R](il: Observable => R): InvalidationListener

Converts a closure to a JavaFX InvalidationListener.

Converts a closure to a JavaFX InvalidationListener.

Type parameters

R

closure can have arbitrary return type to make usage easier (last statement in the closure does not have to return Unit). Return value is ignored in generated listener.

Value parameters

il

Closure to be converted.

Attributes

Returns

a new JavaFX InvalidationListener.

Inherited from:
BindingIncludes
implicit def double2DoubleBinding(i: Double): DoubleBinding

Converts a Double to a JavaFX DoubleBinding

Converts a Double to a JavaFX DoubleBinding

Value parameters

i

Double to generate a new DoubleBinding

Attributes

Returns

a new DoubleBinding generated from the Double.

Inherited from:
BindingIncludes

Converts a Double to a VariablePrecisionNumber.

Converts a Double to a VariablePrecisionNumber.

Value parameters

d

A Double

Attributes

Returns

a VariablePrecisionNumber

Inherited from:
BindingIncludes
implicit def float2FloatBinding(i: Float): FloatBinding

Converts a Float to a JavaFX FloatBinding

Converts a Float to a JavaFX FloatBinding

Value parameters

i

Float to generate a new FloatBinding

Attributes

Returns

a new FloatBinding generated from the Float.

Inherited from:
BindingIncludes
implicit def integer2IntegerBinding(i: Int): IntegerBinding

Converts a Integer to a JavaFX IntegerBinding

Converts a Integer to a JavaFX IntegerBinding

Value parameters

i

Integer to generate a new IntegerBinding

Attributes

Returns

a new IntegerBinding generated from the Integer.

Inherited from:
BindingIncludes
implicit def jfxBooleanBinding2sfx(bb: BooleanBinding): BooleanBinding

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanBinding.html BooleanBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanBinding.html BooleanBinding]] instance to its ScalaFX counterpart.

Value parameters

bb

JavaFX BooleanBinding

Attributes

Returns

ScalaFX BooleanBinding

Inherited from:
BindingIncludes
implicit def jfxBooleanExpression2sfx(be: BooleanExpression): BooleanExpression

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanExpression.html BooleanExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanExpression.html BooleanExpression]] instance to its ScalaFX counterpart.

Value parameters

be

JavaFX BooleanExpression

Attributes

Returns

ScalaFX BooleanExpression

Inherited from:
BindingIncludes
implicit def jfxBooleanProperty2sfx(p: BooleanProperty): BooleanProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX BooleanProperty

Attributes

Returns

ScalaFX BooleanProperty

Inherited from:
PropertyIncludes
implicit def jfxDoubleProperty2sfx(p: DoubleProperty): DoubleProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX BooleanProperty

Attributes

Returns

ScalaFX BooleanProperty

Inherited from:
PropertyIncludes
implicit def jfxFloatProperty2sfx(p: FloatProperty): FloatProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX BooleanProperty

Attributes

Returns

ScalaFX BooleanProperty

Inherited from:
PropertyIncludes
implicit def jfxIntegerProperty2sfx(p: IntegerProperty): IntegerProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX BooleanProperty

Attributes

Returns

ScalaFX BooleanProperty

Inherited from:
PropertyIncludes
implicit def jfxListBinding2sfx[E](v: ListBinding[E]): BufferBinding[E]

Attributes

Inherited from:
BindingIncludes
implicit def jfxListExpression2sfx[E](v: ListExpression[E]): BufferExpression[E]

Attributes

Inherited from:
BindingIncludes
implicit def jfxListProperty2sfx[E](p: ListProperty[E]): BufferProperty[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxLongProperty2sfx(p: LongProperty): LongProperty

Converts a `javafx.beans.property.LongProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.LongProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX LongProperty

Attributes

Returns

ScalaFX LongProperty

Inherited from:
PropertyIncludes
implicit def jfxMapBinding2sfx[K, V](v: MapBinding[K, V]): MapBinding[K, V]

Attributes

Inherited from:
BindingIncludes
implicit def jfxMapExpression2sfx[K, V](v: MapExpression[K, V]): MapExpression[K, V]

Attributes

Inherited from:
BindingIncludes
implicit def jfxMapProperty2sfx[K, V](p: MapProperty[K, V]): MapProperty[K, V]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxNumberBinding2sfx(nb: NumberBinding): NumberBinding

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberBinding.html NumberBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberBinding.html NumberBinding]] instance to its ScalaFX counterpart.

Value parameters

nb

JavaFX NumberBinding

Attributes

Returns

ScalaFX NumberBinding

Inherited from:
BindingIncludes
implicit def jfxNumberExpression2sfx(ne: NumberExpression): NumberExpression

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberExpression.html NumberExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberExpression.html NumberExpression]] instance to its ScalaFX counterpart.

Value parameters

ne

JavaFX NumberExpression

Attributes

Returns

ScalaFX NumberExpression

Inherited from:
BindingIncludes
implicit def jfxObjectBinding2sfx[T](ob: ObjectBinding[T]): ObjectBinding[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectBinding.html ObjectBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectBinding.html ObjectBinding]] instance to its ScalaFX counterpart.

Type parameters

T

ObjectBinding Type

Value parameters

ob

JavaFX ObjectBinding

Attributes

Returns

ScalaFX ObjectBinding

Inherited from:
BindingIncludes
implicit def jfxObjectExpression2sfx[T](oe: ObjectExpression[T]): ObjectExpression[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectExpression.html ObjectExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectExpression.html ObjectExpression]] instance to its ScalaFX counterpart.

Type parameters

T

ObjectExpression Type

Value parameters

oe

JavaFX ObjectExpression

Attributes

Returns

ScalaFX ObjectExpression

Inherited from:
BindingIncludes
implicit def jfxObjectProperty2sfx[T](p: ObjectProperty[T]): ObjectProperty[T]

Converts a `javafx.beans.property.ObjectProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ObjectProperty` instance to its ScalaFX counterpart.

Type parameters

T

ObjectProperty Type

Value parameters

p

JavaFX ObjectProperty

Attributes

Returns

ScalaFX ObjectProperty

Inherited from:
PropertyIncludes
implicit def jfxObservable2sfx(o: Observable): Observable

Converts a `javafx.beans.Observable` instance to its ScalaFX counterpart.

Converts a `javafx.beans.Observable` instance to its ScalaFX counterpart.

Value parameters

o

JavaFX Observable

Attributes

Returns

ScalaFX Observable

Inherited from:
LowerPriorityIncludes
implicit def jfxObservableValue2sfx[T](o: ObservableValue[T]): ObservableValue[T, T]

Converts a `javafx.beans.value.ObservableValue` instance to its ScalaFX counterpart ''which Java Type and Scala Type are the same''.

Converts a `javafx.beans.value.ObservableValue` instance to its ScalaFX counterpart ''which Java Type and Scala Type are the same''.

Value parameters

o

JavaFX ObservableValue

Attributes

Returns

ScalaFX ObservableValue ''which Java Type and Scala Type are the same''.

Inherited from:
LowerPriorityIncludes
implicit def jfxProperty2sfx[T <: AnyRef](p: Property[T]): Property[T, T]

Attributes

Inherited from:
LowerPriorityIncludes
implicit def jfxReadOnlyBooleanProperty2sfx(p: ReadOnlyBooleanProperty): ReadOnlyBooleanProperty

Converts a `javafx.beans.property.ReadOnlyBooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyBooleanProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyBooleanProperty

Attributes

Returns

ScalaFX ReadOnlyBooleanProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyBooleanWrapper2sfx(p: ReadOnlyBooleanWrapper): ReadOnlyBooleanWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyDoubleProperty2sfx(p: ReadOnlyDoubleProperty): ReadOnlyDoubleProperty

Converts a `javafx.beans.property.ReadOnlyDoubleProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyDoubleProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyDoubleProperty

Attributes

Returns

ScalaFX ReadOnlyDoubleProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyDoubleWrapper2sfx(p: ReadOnlyDoubleWrapper): ReadOnlyDoubleWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyFloatProperty2sfx(p: ReadOnlyFloatProperty): ReadOnlyFloatProperty

Converts a `javafx.beans.property.ReadOnlyFloatProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyFloatProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyFloatProperty

Attributes

Returns

ScalaFX ReadOnlyFloatProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyFloatWrapper2sfx(p: ReadOnlyFloatWrapper): ReadOnlyFloatWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyIntegerProperty2sfx(p: ReadOnlyIntegerProperty): ReadOnlyIntegerProperty

Converts a `javafx.beans.property.ReadOnlyIntegerProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyIntegerProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyIntegerProperty

Attributes

Returns

ScalaFX ReadOnlyIntegerProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyIntegerWrapper2sfx(p: ReadOnlyIntegerWrapper): ReadOnlyIntegerWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyListProperty2sfx[E](p: ReadOnlyListProperty[E]): ReadOnlyBufferProperty[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyListWrapper2sfx[E](p: ReadOnlyListWrapper[E]): ReadOnlyBufferWrapper[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyLongProperty2sfx(p: ReadOnlyLongProperty): ReadOnlyLongProperty

Converts a `javafx.beans.property.ReadOnlyLongProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyLongProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyLongProperty

Attributes

Returns

ScalaFX ReadOnlyLongProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyLongWrapper2sfx(p: ReadOnlyLongWrapper): ReadOnlyLongWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyMapProperty2sfx[K, V](p: ReadOnlyMapProperty[K, V]): ReadOnlyMapProperty[K, V]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyMapWrapper2sfx[K, V](p: ReadOnlyMapWrapper[K, V]): ReadOnlyMapWrapper[K, V]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyObjectProperty2sfx[T](p: ReadOnlyObjectProperty[T]): ReadOnlyObjectProperty[T]

Converts a `javafx.beans.property.ReadOnlyObjectProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyObjectProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyObjectProperty

Attributes

Returns

ScalaFX ReadOnlyObjectProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyObjectWrapper2sfx[T](p: ReadOnlyObjectWrapper[T]): ReadOnlyObjectWrapper[T]

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyObjectWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlySetProperty2sfx[E](p: ReadOnlySetProperty[E]): ReadOnlySetProperty[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlySetWrapper2sfx[E](p: ReadOnlySetWrapper[E]): ReadOnlySetWrapper[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyStringProperty2sfx(p: ReadOnlyStringProperty): ReadOnlyStringProperty

Converts a `javafx.beans.property.ReadOnlyStringProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringProperty

Attributes

Returns

ScalaFX ReadOnlyStringProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyStringWrapper2sfx(p: ReadOnlyStringWrapper): ReadOnlyStringWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxSetBinding2sfx[E](v: SetBinding[E]): SetBinding[E]

Attributes

Inherited from:
BindingIncludes
implicit def jfxSetExpression2sfx[E](v: SetExpression[E]): SetExpression[E]

Attributes

Inherited from:
BindingIncludes
implicit def jfxSetProperty2sfx[E](p: SetProperty[E]): SetProperty[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxStringBinding2sfx(sb: StringBinding): StringBinding

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringBinding.html StringBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringBinding.html StringBinding]] instance to its ScalaFX counterpart.

Value parameters

sb

JavaFX StringBinding

Attributes

Returns

ScalaFX StringBinding

Inherited from:
BindingIncludes
implicit def jfxStringExpression2sfx(se: StringExpression): StringExpression

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringExpression.html StringExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringExpression.html StringExpression]] instance to its ScalaFX counterpart.

Value parameters

se

JavaFX StringExpression

Attributes

Returns

ScalaFX StringExpression

Inherited from:
BindingIncludes
implicit def jfxStringProperty2sfx(p: StringProperty): StringProperty

Converts a `javafx.beans.property.StringProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.StringProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX StringProperty

Attributes

Returns

ScalaFX StringProperty

Inherited from:
PropertyIncludes
implicit def long2LongBinding(i: Long): LongBinding

Converts a Long to a JavaFX LongBinding

Converts a Long to a JavaFX LongBinding

Value parameters

i

Long to generate a new LongBinding

Attributes

Returns

a new LongBinding generated from the Long.

Inherited from:
BindingIncludes