Includes

Companion
object
object Includes

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 Params
v1

First Value

values

Collection of values

Returns

The Value sum.

Inherited from
Bindings
def at(time: Duration)(v: => Set[KeyValue[_, _ <: Object]]): KeyFrame
Value Params
time

Duration time

v

Function which returns a scalafx.animation.KeyValue scala.collection.immutable.Set

Returns

new KeyFrame

Inherited from
AnimationIncludes
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 Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

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 Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

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 Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

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 Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

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 Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

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 Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

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 Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

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 Params
v1

First Value

values

Collection of values

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 Params
v1

First Value

values

Collection of values

Returns

The highest Value

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

Function that returns a JavaFX `ObservableBooleanValue`

Returns

A ConditionBuilder wrapping condition.

Inherited from
Bindings

Deprecated and Inherited methods

@deprecated("Starting with Scala 2.12 `handle{...}` can be replaced with idiomatic Scala code `_ => {...}`", "R19")
def handle[J <: Event, R](handler: => R): EventHandler[J]

NOTE: use of handle is deprecated in Scala 2.12 and newer, you can use standard Scala syntax:

NOTE: use of handle is deprecated in Scala 2.12 and newer, you can use standard Scala syntax:

button.onAction = _ => {
 println("Handling button action")
 doSomething()
}

For Scala 2.11 and older, you can use handle to create a simple event handler when information about event is not be used.

Enables following use:

button.onAction = handle {
 println("Handling button action")
 doSomething()
}
Type Params
J

JavaFX Event subclass.

Value Params
handler

code executed when event is handled.

Returns

JavaFX EventHandler which will wrap the input code handler.

Deprecated
Inherited from
EventIncludes

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 Params
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 Params
cl

Closure to be converted.

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 Params
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 Params
il

Closure to be converted.

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 Params
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 Params
il

Closure to be converted.

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 Params
i

Double to generate a new DoubleBinding

Returns

a new DoubleBinding generated from the Double.

Inherited from
BindingIncludes
implicit def double2DurationHelper(d: Double): DurationHelper

Converts a Double to a Duration.

Converts a Double to a Duration.

Value Params
d

Double to convert

Returns

A scalafx.util.Duration.DurationHelper from where it is possible create a new scalafx.util.Duration instance.

Inherited from
UtilIncludes

Converts a Double to a VariablePrecisionNumber.

Converts a Double to a VariablePrecisionNumber.

Value Params
d

A Double

Returns

a VariablePrecisionNumber

Inherited from
BindingIncludes
implicit def eventClosureWrapperWithParam[J <: Event, S <: SFXDelegate[J], R](handler: S => R)(jfx2sfx: J => S): EventHandler[J]

Converts a closure to a JavaFX EventHandler. It is used when the event properties ''will be used''.

Converts a closure to a JavaFX EventHandler. It is used when the event properties ''will be used''.

Enables following use:

button.onAction = (e:ActionEvent) => {
 println("Handling button action: " + e)
 doSomething(e)
}
Type Params
J

JavaFX Event subclass.

Value Params
handler

Closure that that takes scalafx.event.Event as argument.

Returns

JavaFX EventHandler which handle method will call handler

Inherited from
EventIncludes
implicit def eventClosureWrapperWithZeroParam[T <: Event, R](handler: () => R): EventHandler[T]

Converts a closure to a JavaFX EventHandler. It is used when information about event is not be used.

Converts a closure to a JavaFX EventHandler. It is used when information about event is not be used.

Enables following use:

button.onAction = () => {
  println("Handling button action")
  doSomething()
}
Type Params
T

JavaFX Event subclass.

Value Params
handler

Closure that ''will not'' handle event.

Returns

JavaFX EventHandler which handle method will call handler

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

Converts a Float to a JavaFX FloatBinding

Converts a Float to a JavaFX FloatBinding

Value Params
i

Float to generate a new FloatBinding

Returns

a new FloatBinding generated from the Float.

Inherited from
BindingIncludes
implicit def hex2jfxColor(h: Int): Color

Converts a Interger (preferentially in a Hexadecinal format) to a JavaFX Color. See JavaFX's Color.rgb() for more details.

Converts a Interger (preferentially in a Hexadecinal format) to a JavaFX Color. See JavaFX's Color.rgb() for more details.

Value Params
h

Number to be converted

Returns

JavaFX Color correspondent to Number.

Inherited from
PaintIncludes
implicit def hex2sfxColor(h: Int): Color

Converts a Interger (preferentially in a Hexadecinal format) to a ScalaFX Color. See JavaFX's Color.rgb() for more details.

Converts a Interger (preferentially in a Hexadecinal format) to a ScalaFX Color. See JavaFX's Color.rgb() for more details.

Value Params
h

Number to be converted

Returns

ScalaFX Color correspondent to Number.

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

Converts a Integer to a JavaFX IntegerBinding

Converts a Integer to a JavaFX IntegerBinding

Value Params
i

Integer to generate a new IntegerBinding

Returns

a new IntegerBinding generated from the Integer.

Inherited from
BindingIncludes
implicit def jfxAccessibleAction2sfx(e: AccessibleAction): AccessibleAction
Inherited from
LowerPriorityIncludes
implicit def jfxAccessibleRole2sfx(e: AccessibleRole): AccessibleRole
Inherited from
LowerPriorityIncludes
implicit def jfxAccordion2sfx(a: Accordion): Accordion

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Accordion.html Accordion]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Accordion.html Accordion]] instance to its ScalaFX counterpart.

Value Params
a

JavaFX Accordion

Returns

ScalaFX Accordion

Inherited from
ControlIncludes
implicit def jfxActionEvent2sfx(ae: ActionEvent): ActionEvent

Converts a `javafx.event.ActionEvent` instance to its ScalaFX counterpart.

Converts a `javafx.event.ActionEvent` instance to its ScalaFX counterpart.

Value Params
ae

JavaFX ActionEvent

Returns

ScalaFX ActionEvent

Inherited from
EventIncludes
implicit def jfxAffine2sfx(v: Affine): Affine

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Affine.html Affine]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Affine.html Affine]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX Affine

Returns

ScalaFX Affine

Inherited from
TransformIncludes
implicit def jfxAlert2sfx(a: Alert): Alert
Inherited from
ControlIncludes
implicit def jfxAlertType2sfx(a: AlertType): AlertType
Inherited from
ControlIncludes
implicit def jfxAmbientLight2sfx(v: AmbientLight): AmbientLight
Inherited from
LowerPriorityIncludes
implicit def jfxAnchorPane2sfx(a: AnchorPane): AnchorPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/AnchorPane.html AnchorPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/AnchorPane.html AnchorPane]] instance to its ScalaFX counterpart.

Value Params
a

JavaFX AnchorPane

Returns

ScalaFX AnchorPane

Inherited from
LayoutIncludes
implicit def jfxAnimation2sfx(v: Animation): Animation

Generates a ScalaFX Animation from its JavaFX counterparty.

Generates a ScalaFX Animation from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxAnimationStatus2sfx(v: Status): Status

Generates a ScalaFX Animation.Status from its JavaFX counterparty.

Generates a ScalaFX Animation.Status from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxAnimationTimer2sfx(at: AnimationTimer): AnimationTimer

Generates a ScalaFX AnimationTimer from its JavaFX counterparty.

Generates a ScalaFX AnimationTimer from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxArc2sfx(r: Arc): Arc

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Arc.html Arc]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Arc.html Arc]] instance to its ScalaFX counterpart.

Value Params
r

JavaFX Arc

Returns

ScalaFX Arc

Inherited from
ShapeIncludes
implicit def jfxArcTo2sfx(a: ArcTo): ArcTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ArcTo.html ArcTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ArcTo.html ArcTo]] instance to its ScalaFX counterpart.

Value Params
a

JavaFX ArcTo

Returns

ScalaFX ArcTo

Inherited from
ShapeIncludes
implicit def jfxArcType2sfx(e: ArcType): ArcType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ArcType.html ArcType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ArcType.html ArcType]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX ArcType

Returns

ScalaFX ArcType

Inherited from
ShapeIncludes
implicit def jfxAreaChart2sfx[X, Y](b: AreaChart[X, Y]): AreaChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/AreaChart.html AreaChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/AreaChart.html AreaChart]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type

Y

Y Axis Type

Value Params
b

JavaFX AreaChart

Returns

ScalaFX AreaChart

Inherited from
ChartIncludes
implicit def jfxAudioClip2sfx(ac: AudioClip): AudioClip

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioClip.html AudioClip]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioClip.html AudioClip]] instance to its ScalaFX counterpart.

Value Params
ac

JavaFX AudioClip

Returns

ScalaFX AudioClip

Inherited from
MediaIncludes
implicit def jfxAudioEqualizer2sfx(ae: AudioEqualizer): AudioEqualizer

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioEqualizer.html AudioEqualizer]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioEqualizer.html AudioEqualizer]] instance to its ScalaFX counterpart.

Value Params
ae

JavaFX AudioEqualizer

Returns

ScalaFX AudioEqualizer

Inherited from
MediaIncludes
implicit def jfxAudioTrack2sfx(at: AudioTrack): AudioTrack

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioTrack.html AudioTrack]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioTrack.html AudioTrack]] instance to its ScalaFX counterpart.

Value Params
at

JavaFX AudioTrack

Returns

ScalaFX AudioTrack

Inherited from
MediaIncludes
implicit def jfxAxis2sfx[X](a: Axis[X]): Axis[X]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Axis.html Axis]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Axis.html Axis]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type

Value Params
a

JavaFX Axis

Returns

ScalaFX Axis

Inherited from
ChartIncludes
implicit def jfxAxisTickMark2sfx[T](b: TickMark[T]): TickMark[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Axis.TickMark.html Axis.TickMark]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Axis.TickMark.html Axis.TickMark]] instance to its ScalaFX counterpart.

Type Params
T

Axis.TickMark Type.

Value Params
b

JavaFX Axis.TickMark

Returns

ScalaFX Axis.TickMark

Inherited from
ChartIncludes
implicit def jfxBackground2sfx(v: Background): Background

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Background.html Background]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Background.html Background]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX Background

Returns

ScalaFX Background

Inherited from
LayoutIncludes
implicit def jfxBackgroundFill2sfx(v: BackgroundFill): BackgroundFill
Inherited from
LayoutIncludes
implicit def jfxBackgroundImage2sfx(v: BackgroundImage): BackgroundImage
Inherited from
LayoutIncludes
implicit def jfxBackgroundPosition2sfx(v: BackgroundPosition): BackgroundPosition
Inherited from
LayoutIncludes
implicit def jfxBackgroundRepeat2sfx(v: BackgroundRepeat): BackgroundRepeat
Inherited from
LayoutIncludes
implicit def jfxBackgroundSize2sfx(v: BackgroundSize): BackgroundSize
Inherited from
LayoutIncludes
implicit def jfxBarChart2sfx[X, Y](b: BarChart[X, Y]): BarChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/BarChart.html BarChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/BarChart.html BarChart]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type

Y

Y Axis Type

Value Params
b

JavaFX BarChart

Returns

ScalaFX BarChart

Inherited from
ChartIncludes
implicit def jfxBigDecimalStringConverter2sfx(c: BigDecimalStringConverter): BigDecimalStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BigDecimalStringConverter.html BigDecimalStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BigDecimalStringConverter.html BigDecimalStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX BigDecimalStringConverter

Returns

ScalaFX BigDecimalStringConverter

Inherited from
ConverterIncludes
implicit def jfxBigIntegerStringConverter2sfx(c: BigIntegerStringConverter): BigIntStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BigIntegerStringConverter.html BigIntegerStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BigIntegerStringConverter.html BigIntegerStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX BigIntegerStringConverter

Returns

ScalaFX BigIntegerStringConverter

Inherited from
ConverterIncludes
implicit def jfxBlend2sfx(b: Blend): Blend

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Blend.html Blend]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Blend.html Blend]] instance to its ScalaFX counterpart.

Value Params
b

JavaFX Blend

Returns

ScalaFX Blend

Inherited from
EffectIncludes
implicit def jfxBlendMode2sfx(e: BlendMode): BlendMode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BlendMode.html BlendMode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BlendMode.html BlendMode]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX BlendMode

Returns

ScalaFX BlendMode

Inherited from
EffectIncludes
implicit def jfxBloom2sfx(b: Bloom): Bloom

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Bloom.html Bloom]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Bloom.html Bloom]] instance to its ScalaFX counterpart.

Value Params
b

JavaFX Bloom

Returns

ScalaFX Bloom

Inherited from
EffectIncludes
implicit def jfxBlurType2sfx(e: BlurType): BlurType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BlurType.html BlurType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BlurType.html BlurType]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX BlurType

Returns

ScalaFX BlurType

Inherited from
EffectIncludes
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 Params
bb

JavaFX BooleanBinding

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 Params
be

JavaFX BooleanExpression

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 Params
p

JavaFX BooleanProperty

Returns

ScalaFX BooleanProperty

Inherited from
PropertyIncludes
implicit def jfxBooleanStringConverter2sfx(c: BooleanStringConverter): BooleanStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BooleanStringConverter.html BooleanStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BooleanStringConverter.html BooleanStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX BooleanStringConverter

Returns

ScalaFX BooleanStringConverter

Inherited from
ConverterIncludes
implicit def jfxBorder2sfx(v: Border): Border

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Border.html Border]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Border.html Border]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX Border

Returns

ScalaFX Border

Inherited from
LayoutIncludes
implicit def jfxBorderImage2sfx(v: BorderImage): BorderImage
Inherited from
LayoutIncludes
implicit def jfxBorderPane2sfx(v: BorderPane): BorderPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/BorderPane.html BorderPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/BorderPane.html BorderPane]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX BorderPane

Returns

ScalaFX BorderPane

Inherited from
LayoutIncludes
implicit def jfxBorderRepeat2sfx(v: BorderRepeat): BorderRepeat
Inherited from
LayoutIncludes
implicit def jfxBorderStroke2sfx(v: BorderStroke): BorderStroke
Inherited from
LayoutIncludes
implicit def jfxBorderStrokeStyle2sfx(v: BorderStrokeStyle): BorderStrokeStyle
Inherited from
LayoutIncludes
implicit def jfxBorderWidths2sfx(v: BorderWidths): BorderWidths
Inherited from
LayoutIncludes
implicit def jfxBoundingBox2sfx(b: BoundingBox): BoundingBox

Converts a `javafx.geometry.BoundingBox` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.BoundingBox` instance to its ScalaFX counterpart.

Value Params
b

JavaFX BoundingBox

Returns

ScalaFX BoundingBox

Inherited from
GeometryIncludes
implicit def jfxBounds2sfx(b: Bounds): Bounds

Converts a `javafx.geometry.Bounds` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Bounds` instance to its ScalaFX counterpart.

Value Params
b

JavaFX Bounds

Returns

ScalaFX Bounds

Inherited from
GeometryIncludes
implicit def jfxBox2sfx(b: Box): Box

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Box.html Box]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Box.html Box]] instance to its ScalaFX counterpart.

Value Params
b

JavaFX Box

Returns

ScalaFX Box

Inherited from
ShapeIncludes
implicit def jfxBoxBlur2sfx(bb: BoxBlur): BoxBlur

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BoxBlur.html BoxBlur]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BoxBlur.html BoxBlur]] instance to its ScalaFX counterpart.

Value Params
bb

JavaFX BoxBlur

Returns

ScalaFX BoxBlur

Inherited from
EffectIncludes
implicit def jfxBubbleChart2sfx[X, Y](b: BubbleChart[X, Y]): BubbleChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/BubbleChart.html BubbleChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/BubbleChart.html BubbleChart]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type

Y

Y Axis Type

Value Params
b

JavaFX BubbleChart

Returns

ScalaFX BubbleChart

Inherited from
ChartIncludes
implicit def jfxButton2sfx(b: Button): Button

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Button.html Button]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Button.html Button]] instance to its ScalaFX counterpart.

Value Params
b

JavaFX Button

Returns

ScalaFX Button

Inherited from
ControlIncludes
implicit def jfxButtonBar2sfx(b: ButtonBar): ButtonBar
Inherited from
ControlIncludes
implicit def jfxButtonBase2sfx(b: ButtonBase): ButtonBase

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ButtonBase.html ButtonBase]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ButtonBase.html ButtonBase]] instance to its ScalaFX counterpart.

Value Params
b

JavaFX ButtonBase

Returns

ScalaFX ButtonBase

Inherited from
ControlIncludes
implicit def jfxButtonData2sfx(b: ButtonData): ButtonData
Inherited from
ControlIncludes
implicit def jfxButtonType2sfx(b: ButtonType): ButtonType
Inherited from
ControlIncludes
implicit def jfxByteStringConverter2sfx(c: ByteStringConverter): ByteStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/ByteStringConverter.html ByteStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/ByteStringConverter.html ByteStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX ByteStringConverter

Returns

ScalaFX ByteStringConverter

Inherited from
ConverterIncludes
implicit def jfxCacheHint2sfx(e: CacheHint): CacheHint

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

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

Value Params
e

JavaFX CacheHint

Returns

ScalaFX CacheHint

Inherited from
LowerPriorityIncludes
implicit def jfxCallbackToFunction1[P, R](c: Callback[P, R]): P => R

Converts a JavaFX `Callback` to a Function1.

Converts a JavaFX `Callback` to a Function1.

Type Params
P

Callback parameter type

R

Callback return type.

Value Params
c

JavaFX Callback

Returns

A function would call Callback.

Inherited from
UtilIncludes
implicit def jfxCamera2sfx(v: Camera): Camera

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

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

Value Params
v

JavaFX Camera

Returns

ScalaFX Camera

Inherited from
LowerPriorityIncludes
implicit def jfxCanvas2sfx(c: Canvas): Canvas

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/canvas/Canvas.html Canvas]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/canvas/Canvas.html Canvas]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX Canvas

Returns

ScalaFX Canvas

Inherited from
CanvasIncludes
implicit def jfxCategoryAxis2sfx(b: CategoryAxis): CategoryAxis

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/CategoryAxis.html CategoryAxis]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/CategoryAxis.html CategoryAxis]] instance to its ScalaFX counterpart.

Value Params
b

JavaFX CategoryAxis

Returns

ScalaFX CategoryAxis

Inherited from
ChartIncludes
implicit def jfxCell2sfx[T](c: Cell[T]): Cell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Cell.html Cell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Cell.html Cell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the Cell

Value Params
c

JavaFX Cell

Returns

ScalaFX Cell

Inherited from
ControlIncludes
implicit def jfxCellDataFeatures2sfx[S, T](cdf: CellDataFeatures[S, T]): CellDataFeatures[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableColumn.CellDataFeatures.html TableColumn.CellDataFeatures]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableColumn.CellDataFeatures.html TableColumn.CellDataFeatures]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TableColumn.CellDataFeatures

Value Params
cdf

JavaFX TableColumn.CellDataFeatures

Returns

ScalaFX TableColumn.CellDataFeatures

Inherited from
ControlIncludes
implicit def jfxCellEditEvent2sfx[S, T](cee: CellEditEvent[S, T]): CellEditEvent[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableColumn.CellEditEvent.html TableColumn.CellEditEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableColumn.CellEditEvent.html TableColumn.CellEditEvent]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TableColumn.CellEditEvent

Value Params
cee

JavaFX TableColumn.CellEditEvent

Returns

ScalaFX TableColumn.CellEditEvent

Inherited from
ControlIncludes
implicit def jfxCharacterStringConverter2sfx(c: CharacterStringConverter): CharStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/CharacterStringConverter.html CharacterStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/CharacterStringConverter.html CharacterStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX CharacterStringConverter

Returns

ScalaFX CharacterStringConverter

Inherited from
ConverterIncludes
implicit def jfxChart2sfx(c: Chart): Chart

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Chart.html Chart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Chart.html Chart]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX Chart

Returns

ScalaFX Chart

Inherited from
ChartIncludes
implicit def jfxCheckBox2sfx(c: CheckBox): CheckBox

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/CheckBox.html CheckBox]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/CheckBox.html CheckBox]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX CheckBox

Returns

ScalaFX CheckBox

Inherited from
ControlIncludes
implicit def jfxCheckBoxListCell2sfx[T](cell: CheckBoxListCell[T]): CheckBoxListCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxListCell.html CheckBoxListCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxListCell.html CheckBoxListCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the elements contained within the Element

Value Params
cell

JavaFX CheckBoxListCell

Returns

ScalaFX CheckBoxListCell

Inherited from
CellIncludes
implicit def jfxCheckBoxTableCell2sfx[S, T](cell: CheckBoxTableCell[S, T]): CheckBoxTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTableCell.html CheckBoxTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTableCell.html CheckBoxTableCell]] instance to its ScalaFX counterpart.

Type Params
S

The type of the elements contained ...

T

The type of the elements contained within the Element

Value Params
cell

JavaFX CheckBoxTableCell

Returns

ScalaFX CheckBoxTableCell

Inherited from
CellIncludes
implicit def jfxCheckBoxTreeCell2sfx[T](cell: CheckBoxTreeCell[T]): CheckBoxTreeCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTreeCell.html CheckBoxTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTreeCell.html CheckBoxTreeCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the elements contained within the Element

Value Params
cell

JavaFX CheckBoxTreeCell

Returns

ScalaFX CheckBoxTreeCell

Inherited from
CellIncludes
implicit def jfxCheckBoxTreeTableCell2sfx[S, T](cell: CheckBoxTreeTableCell[S, T]): CheckBoxTreeTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTreeTableCell.html CheckBoxTreeTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTreeTableCell.html CheckBoxTreeTableCell]] instance to its ScalaFX counterpart.

Type Params
S

The type of the elements contained ...

T

The type of the elements contained within the Element

Value Params
cell

JavaFX CheckBoxTreeTableCell

Returns

ScalaFX CheckBoxTreeTableCell

Inherited from
CellIncludes
implicit def jfxCheckMenuItem2sfx(c: CheckMenuItem): CheckMenuItem

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/CheckMenuItem.html MenuItem]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/CheckMenuItem.html MenuItem]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX CheckMenuItem

Returns

ScalaFX CheckMenuItem

Inherited from
ControlIncludes
implicit def jfxChoiceBox2sfx[J <: AnyRef](cb: ChoiceBox[J]): ChoiceBox[J]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ChoiceBox.html ChoiceBox]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ChoiceBox.html ChoiceBox]] instance to its ScalaFX counterpart.

Type Params
J

The type of the ChoiceBox

Value Params
cb

JavaFX ChoiceBox

Returns

ScalaFX ChoiceBox

Inherited from
ControlIncludes
implicit def jfxChoiceBoxListCell2sfx[T](cell: ChoiceBoxListCell[T]): ChoiceBoxListCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxListCell.html ChoiceBoxListCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxListCell.html ChoiceBoxListCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the elements contained within the Element

Value Params
cell

JavaFX ChoiceBoxListCell

Returns

ScalaFX ChoiceBoxListCell

Inherited from
CellIncludes
implicit def jfxChoiceBoxTableCell2sfx[S, T](cell: ChoiceBoxTableCell[S, T]): ChoiceBoxTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTableCell.html ChoiceBoxTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTableCell.html ChoiceBoxTableCell]] instance to its ScalaFX counterpart.

Type Params
S

The type of the elements contained ...

T

The type of the elements contained within the Element

Value Params
cell

JavaFX ChoiceBoxTableCell

Returns

ScalaFX ChoiceBoxTableCell

Inherited from
CellIncludes
implicit def jfxChoiceBoxTreeCell2sfx[T](cell: ChoiceBoxTreeCell[T]): ChoiceBoxTreeCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTreeCell.html ChoiceBoxTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTreeCell.html ChoiceBoxTreeCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the elements contained within the Element

Value Params
cell

JavaFX ChoiceBoxTreeCell

Returns

ScalaFX ChoiceBoxTreeCell

Inherited from
CellIncludes
implicit def jfxChoiceBoxTreeTableCell2sfx[S, T](cell: ChoiceBoxTreeTableCell[S, T]): ChoiceBoxTreeTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTreeTreeCell.html ChoiceBoxTreeTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTreeTreeCell.html ChoiceBoxTreeTreeCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the elements contained within the Element

Value Params
cell

JavaFX ChoiceBoxTreeTreeCell

Returns

ScalaFX ChoiceBoxTreeTreeCell

Inherited from
CellIncludes
implicit def jfxChoiceDialog2sfx[T](c: ChoiceDialog[T]): ChoiceDialog[T]
Inherited from
ControlIncludes
implicit def jfxCircle2sfx(r: Circle): Circle

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Circle.html Circle]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Circle.html Circle]] instance to its ScalaFX counterpart.

Value Params
r

JavaFX Circle

Returns

ScalaFX Circle

Inherited from
ShapeIncludes
implicit def jfxClipboard2sfx(c: Clipboard): Clipboard

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Clipboard.html Clipboard]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Clipboard.html Clipboard]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX Clipboard

Returns

ScalaFX Clipboard

Inherited from
InputIncludes
implicit def jfxClipboardContent2sfx(c: ClipboardContent): ClipboardContent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ClipboardContent.html ClipboardContent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ClipboardContent.html ClipboardContent]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX ClipboardContent

Returns

ScalaFX ClipboardContent

Inherited from
InputIncludes
implicit def jfxClosePath2sfx(c: ClosePath): ClosePath

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ClosePath.html ClosePath]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ClosePath.html ClosePath]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX ClosePath

Returns

ScalaFX ClosePath

Inherited from
ShapeIncludes
implicit def jfxCollation2sfx(c: Collation): Collation

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Collation$.html Collation]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Collation$.html Collation]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX Collation

Returns

ScalaFX Collation

Inherited from
PrintIncludes
implicit def jfxColor2sfx(c: Color): Color

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Color.html Color]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Color.html Color]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX Color

Returns

ScalaFX Color

Inherited from
PaintIncludes
implicit def jfxColorAdjust2sfx(ca: ColorAdjust): ColorAdjust

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ColorAdjust.html ColorAdjust]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ColorAdjust.html ColorAdjust]] instance to its ScalaFX counterpart.

Value Params
ca

JavaFX ColorAdjust

Returns

ScalaFX ColorAdjust

Inherited from
EffectIncludes
implicit def jfxColorInput2sfx(ci: ColorInput): ColorInput

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ColorInput.html ColorInput]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ColorInput.html ColorInput]] instance to its ScalaFX counterpart.

Value Params
ci

JavaFX ColorInput

Returns

ScalaFX ColorInput

Inherited from
EffectIncludes
implicit def jfxColorPicker2sfx(cp: ColorPicker): ColorPicker

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ColorPicker.html ColorPicker]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ColorPicker.html ColorPicker]] instance to its ScalaFX counterpart.

Value Params
cp

JavaFX ColorPicker

Returns

ScalaFX ColorPicker

Inherited from
ControlIncludes
implicit def jfxColumnConstraints2sfx(v: ColumnConstraints): ColumnConstraints

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/ColumnConstraints.html ColumnConstraints]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/ColumnConstraints.html ColumnConstraints]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX ColumnConstraints

Returns

ScalaFX ColumnConstraints

Inherited from
LayoutIncludes
implicit def jfxComboBox2sfx[T](v: ComboBox[T]): ComboBox[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ComboBox.html ComboBox]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ComboBox.html ComboBox]] instance to its ScalaFX counterpart.

Type Params
T

The type of the ComboBox

Value Params
v

JavaFX ComboBox

Returns

ScalaFX ComboBox

Inherited from
ControlIncludes
implicit def jfxComboBoxBase2sfx[T](v: ComboBoxBase[T]): ComboBoxBase[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ComboBoxBase.html ComboBoxBase]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ComboBoxBase.html ComboBoxBase]] instance to its ScalaFX counterpart.

Type Params
T

The type of the ComboBoxBase

Value Params
v

JavaFX ComboBoxBase

Returns

ScalaFX ComboBoxBase

Inherited from
ControlIncludes
implicit def jfxComboBoxListCell2sfx[T](cell: ComboBoxListCell[T]): ComboBoxListCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxListCell.html ComboBoxListCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxListCell.html ComboBoxListCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the elements contained within the Element

Value Params
cell

JavaFX ComboBoxListCell

Returns

ScalaFX ComboBoxListCell

Inherited from
CellIncludes
implicit def jfxComboBoxTableCell2sfx[S, T](cell: ComboBoxTableCell[S, T]): ComboBoxTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTableCell.html ComboBoxTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTableCell.html ComboBoxTableCell]] instance to its ScalaFX counterpart.

Type Params
S

The type of the elements contained ...

T

The type of the elements contained within the Element

Value Params
cell

JavaFX ComboBoxTableCell

Returns

ScalaFX ComboBoxTableCell

Inherited from
CellIncludes
implicit def jfxComboBoxTreeCell2sfx[T](cell: ComboBoxTreeCell[T]): ComboBoxTreeCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTreeCell.html ComboBoxTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTreeCell.html ComboBoxTreeCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the elements contained within the Element

Value Params
cell

JavaFX ComboBoxTreeCell

Returns

ScalaFX ComboBoxTreeCell

Inherited from
CellIncludes
implicit def jfxComboBoxTreeTableCell2sfx[S, T](cell: ComboBoxTreeTableCell[S, T]): ComboBoxTreeTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTreeCell.html ComboBoxTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTreeCell.html ComboBoxTreeCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the elements contained within the Element

Value Params
cell

JavaFX ComboBoxTreeCell

Returns

ScalaFX ComboBoxTreeCell

Inherited from
CellIncludes
implicit def jfxConditionalFeature2sfx(e: ConditionalFeature): ConditionalFeature

Converts a `javafx.application.ConditionalFeature` instance to its ScalaFX counterpart.

Converts a `javafx.application.ConditionalFeature` instance to its ScalaFX counterpart.

Value Params
e

JavaFX ConditionalFeature

Returns

ScalaFX ConditionalFeature

Inherited from
ApplicationIncludes
implicit def jfxConstraintsBase2sfx(v: ConstraintsBase): ConstraintsBase

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/ConstraintsBase.html ConstraintsBase]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/ConstraintsBase.html ConstraintsBase]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX ConstraintsBase

Returns

ScalaFX ConstraintsBase

Inherited from
LayoutIncludes
implicit def jfxContentDisplay2sfx(e: ContentDisplay): ContentDisplay

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ContentDisplay.html ContentDisplay]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ContentDisplay.html ContentDisplay]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX ContentDisplay

Returns

ScalaFX ContentDisplay

Inherited from
ControlIncludes
implicit def jfxContextMenu2sfx(c: ContextMenu): ContextMenu

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ContextMenu.html ContextMenu]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ContextMenu.html ContextMenu]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX ContextMenu

Returns

ScalaFX ContextMenu

Inherited from
ControlIncludes
implicit def jfxContextMenuEvent2sfx(c: ContextMenuEvent): ContextMenuEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ContextMenuEvent.html ContextMenuEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ContextMenuEvent.html ContextMenuEvent]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX ContextMenuEvent

Returns

ScalaFX ContextMenuEvent

Inherited from
InputIncludes
implicit def jfxControl2sfx(c: Control): Control

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Control.html Control]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Control.html Control]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX Control

Returns

ScalaFX Control

Inherited from
ControlIncludes
implicit def jfxCornerRadii2sfx(v: CornerRadii): CornerRadii
Inherited from
LayoutIncludes
implicit def jfxCubicCurve2sfx(c: CubicCurve): CubicCurve

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CubicCurve.html CubicCurve]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CubicCurve.html CubicCurve]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX CubicCurve

Returns

ScalaFX CubicCurve

Inherited from
ShapeIncludes
implicit def jfxCubicCurveTo2sfx(c: CubicCurveTo): CubicCurveTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CubicCurveTo.html CubicCurveTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CubicCurveTo.html CubicCurveTo]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX CubicCurveTo

Returns

ScalaFX CubicCurveTo

Inherited from
ShapeIncludes
implicit def jfxCullFace2sfx(cf: CullFace): CullFace

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CullFace.html CullFace]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CullFace.html CullFace]] instance to its ScalaFX counterpart.

Value Params
cf

JavaFX CullFace

Returns

ScalaFX CullFace

Inherited from
ShapeIncludes
implicit def jfxCurrencyStringConverter2sfx(c: CurrencyStringConverter): CurrencyStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/CurrencyStringConverter.html CurrencyStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/CurrencyStringConverter.html CurrencyStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX CurrencyStringConverter

Returns

ScalaFX CurrencyStringConverter

Inherited from
ConverterIncludes
implicit def jfxCursor2sfx(v: Cursor): Cursor

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

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

Value Params
v

JavaFX Cursor

Returns

ScalaFX Cursor

Inherited from
LowerPriorityIncludes
implicit def jfxCustomMenuItem2sfx(c: CustomMenuItem): CustomMenuItem

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/CustomMenuItem.html CustomMenuItem]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/CustomMenuItem.html CustomMenuItem]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX CustomMenuItem

Returns

ScalaFX CustomMenuItem

Inherited from
ControlIncludes
implicit def jfxCycleMethod2sfx(e: CycleMethod): CycleMethod

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/CycleMethod.html CycleMethod]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/CycleMethod.html CycleMethod]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX CycleMethod

Returns

ScalaFX CycleMethod

Inherited from
PaintIncludes
implicit def jfxCylinder2sfx(c: Cylinder): Cylinder
Inherited from
ShapeIncludes
implicit def jfxDataFormat2sfx(df: DataFormat): DataFormat

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/DataFormat.html DataFormat]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/DataFormat.html DataFormat]] instance to its ScalaFX counterpart.

Value Params
df

JavaFX DataFormat

Returns

ScalaFX DataFormat

Inherited from
InputIncludes
implicit def jfxDateCell2sfx(v: DateCell): DateCell

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/DateCell.html DateCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/DateCell.html DateCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the DateCell

Value Params
v

JavaFX DateCell

Returns

ScalaFX DateCell

Inherited from
ControlIncludes
implicit def jfxDatePicker2sfx(v: DatePicker): DatePicker

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/DatePicker.html DatePicker]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/DatePicker.html DatePicker]] instance to its ScalaFX counterpart.

Type Params
T

The type of the DatePicker

Value Params
v

JavaFX DatePicker

Returns

ScalaFX DatePicker

Inherited from
ControlIncludes
implicit def jfxDateStringConverter2sfx(c: DateStringConverter): DateStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DateStringConverter.html DateStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DateStringConverter.html DateStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX DateStringConverter

Returns

ScalaFX DateStringConverter

Inherited from
ConverterIncludes
implicit def jfxDateTimeStringConverter2sfx(c: DateTimeStringConverter): DateTimeStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DateTimeStringConverter.html DateTimeStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DateTimeStringConverter.html DateTimeStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX DateTimeStringConverter

Returns

ScalaFX DateTimeStringConverter

Inherited from
ConverterIncludes
implicit def jfxDefaultStringConverter2sfx(c: DefaultStringConverter): DefaultStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DefaultStringConverter.html DefaultStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DefaultStringConverter.html DefaultStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX DefaultStringConverter

Returns

ScalaFX DefaultStringConverter

Inherited from
ConverterIncludes
implicit def jfxDepthTest2sfx(e: DepthTest): DepthTest

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

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

Value Params
e

JavaFX DepthTest

Returns

ScalaFX DepthTest

Inherited from
LowerPriorityIncludes
implicit def jfxDialog2sfx[R](a: Dialog[R]): Dialog[R]
Inherited from
ControlIncludes
implicit def jfxDialogEvent2sfx(a: DialogEvent): DialogEvent
Inherited from
ControlIncludes
implicit def jfxDialogPane2sfx(a: DialogPane): DialogPane
Inherited from
ControlIncludes
implicit def jfxDimension2D2sfx(d: Dimension2D): Dimension2D

Converts a `javafx.geometry.Dimension2D` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Dimension2D` instance to its ScalaFX counterpart.

Value Params
d

JavaFX Dimension2D

Returns

ScalaFX Dimension2D

Inherited from
GeometryIncludes
implicit def jfxDirectoryChooser2sfx(dc: DirectoryChooser): DirectoryChooser

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/DirectoryChooser.html DirectoryChooser]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/DirectoryChooser.html DirectoryChooser]] instance to its ScalaFX counterpart.

Value Params
dc

JavaFX DirectoryChooser

Returns

ScalaFX DirectoryChooser

Inherited from
StageIncludes
implicit def jfxDisplacementMap2sfx(dm: DisplacementMap): DisplacementMap

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/DisplacementMap.html DisplacementMap]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/DisplacementMap.html DisplacementMap]] instance to its ScalaFX counterpart.

Value Params
dm

JavaFX DisplacementMap

Returns

ScalaFX DisplacementMap

Inherited from
EffectIncludes
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 Params
p

JavaFX BooleanProperty

Returns

ScalaFX BooleanProperty

Inherited from
PropertyIncludes
implicit def jfxDoubleSpinnerValueFactory2sfx(ev: DoubleSpinnerValueFactory): DoubleSpinnerValueFactory
Inherited from
ControlIncludes
implicit def jfxDoubleStringConverter2sfx(c: DoubleStringConverter): DoubleStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DoubleStringConverter.html DoubleStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DoubleStringConverter.html DoubleStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX DoubleStringConverter

Returns

ScalaFX DoubleStringConverter

Inherited from
ConverterIncludes
implicit def jfxDragEvent2sfx(de: DragEvent): DragEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/DragEvent.html DragEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/DragEvent.html DragEvent]] instance to its ScalaFX counterpart.

Value Params
de

JavaFX DragEvent

Returns

ScalaFX DragEvent

Inherited from
InputIncludes
implicit def jfxDragboard2sfx(d: Dragboard): Dragboard

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Dragboard.html Dragboard]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Dragboard.html Dragboard]] instance to its ScalaFX counterpart.

Value Params
d

JavaFX Dragboard

Returns

ScalaFX Dragboard

Inherited from
InputIncludes
implicit def jfxDrawMode2sfx(e: DrawMode): DrawMode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/DrawMode.html DrawMode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/DrawMode.html DrawMode]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX DrawMode

Returns

ScalaFX DrawMode

Inherited from
ShapeIncludes
implicit def jfxDropShadow2sfx(ds: DropShadow): DropShadow

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/DropShadow.html DropShadow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/DropShadow.html DropShadow]] instance to its ScalaFX counterpart.

Value Params
ds

JavaFX DropShadow

Returns

ScalaFX DropShadow

Inherited from
EffectIncludes
implicit def jfxDuration2sfx(d: Duration): Duration

Converts a `javafx.util.Duration` instance to its ScalaFX counterpart.

Converts a `javafx.util.Duration` instance to its ScalaFX counterpart.

Value Params
d

JavaFX Duration

Returns

ScalaFX Duration

Inherited from
UtilIncludes
implicit def jfxEffect2sfx(e: Effect): Effect

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Effect.html Effect]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Effect.html Effect]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX Effect

Returns

ScalaFX Effect

Inherited from
EffectIncludes
implicit def jfxEllipse2sfx(r: Ellipse): Ellipse

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Ellipse.html Ellipse]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Ellipse.html Ellipse]] instance to its ScalaFX counterpart.

Value Params
r

JavaFX Ellipse

Returns

ScalaFX Ellipse

Inherited from
ShapeIncludes
implicit def jfxEqualizerBand2sfx(eb: EqualizerBand): EqualizerBand

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/EqualizerBand.html EqualizerBand]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/EqualizerBand.html EqualizerBand]] instance to its ScalaFX counterpart.

Value Params
eb

JavaFX EqualizerBand

Returns

ScalaFX EqualizerBand

Inherited from
MediaIncludes
implicit def jfxEvent2sfx(e: Event): Event

Converts a `javafx.event.Event` instance to its ScalaFX counterpart.

Converts a `javafx.event.Event` instance to its ScalaFX counterpart.

Value Params
e

JavaFX Event

Returns

ScalaFX Event

Inherited from
EventIncludes
implicit def jfxEventDispatchChain2sfx(e: EventDispatchChain): EventDispatchChain
Inherited from
EventIncludes
implicit def jfxEventDispatcher2sfx(e: EventDispatcher): EventDispatcher
Inherited from
EventIncludes
implicit def jfxEventTarget2sfx(e: EventTarget): EventTarget
Inherited from
EventIncludes
implicit def jfxEventType2sfx[T <: Event](e: EventType[T]): EventType[T]

Converts a `javafx.event.EventType` instance to its ScalaFX counterpart.

Converts a `javafx.event.EventType` instance to its ScalaFX counterpart.

Type Params
T

Event Type

Value Params
e

JavaFX EventType

Returns

ScalaFX EventType

Inherited from
EventIncludes
implicit def jfxFadeTransition2sfx(v: FadeTransition): FadeTransition

Generates a ScalaFX FadeTransition from its JavaFX counterparty.

Generates a ScalaFX FadeTransition from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxFileChooser2sfx(fc: FileChooser): FileChooser

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/FileChooser.html FileChooser]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/FileChooser.html FileChooser]] instance to its ScalaFX counterpart.

Value Params
fc

JavaFX FileChooser

Returns

ScalaFX FileChooser

Inherited from
StageIncludes
implicit def jfxFileChooserExtensionFilter2sfx(ef: ExtensionFilter): ExtensionFilter

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/FileChooser.ExtensionFilter.html FileChooser.ExtensionFilter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/FileChooser.ExtensionFilter.html FileChooser.ExtensionFilter]] instance to its ScalaFX counterpart.

Value Params
ef

JavaFX FileChooser.ExtensionFilter

Returns

ScalaFX FileChooser.ExtensionFilter

Inherited from
StageIncludes
implicit def jfxFillRule2sfx(e: FillRule): FillRule

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/FillRule.html FillRule]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/FillRule.html FillRule]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX FillRule

Returns

ScalaFX FillRule

Inherited from
ShapeIncludes
implicit def jfxFillTransition2sfx(v: FillTransition): FillTransition

Generates a ScalaFX FillTransition from its JavaFX counterparty.

Generates a ScalaFX FillTransition from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxFloatMap2sfx(fm: FloatMap): FloatMap

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/FloatMap.html FloatMap]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/FloatMap.html FloatMap]] instance to its ScalaFX counterpart.

Value Params
fm

JavaFX FloatMap

Returns

ScalaFX FloatMap

Inherited from
EffectIncludes
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 Params
p

JavaFX BooleanProperty

Returns

ScalaFX BooleanProperty

Inherited from
PropertyIncludes
implicit def jfxFloatStringConverter2sfx(c: FloatStringConverter): FloatStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/FloatStringConverter.html FloatStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/FloatStringConverter.html FloatStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX FloatStringConverter

Returns

ScalaFX FloatStringConverter

Inherited from
ConverterIncludes
implicit def jfxFlowPane2sfx(v: FlowPane): FlowPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/FlowPane.html FlowPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/FlowPane.html FlowPane]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX FlowPane

Returns

ScalaFX FlowPane

Inherited from
LayoutIncludes
implicit def jfxFocusModel2sfx[T](v: FocusModel[T]): FocusModel[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/FocusModel.html FocusModel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/FocusModel.html FocusModel]] instance to its ScalaFX counterpart.

Type Params
T

The type of the FocusModel

Value Params
v

JavaFX FocusModel

Returns

ScalaFX FocusModel

Inherited from
ControlIncludes
implicit def jfxFont2sfxFont(f: Font): Font

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/Font.html Font]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/Font.html Font]] instance to its ScalaFX counterpart.

Value Params
f

JavaFX Font

Returns

ScalaFX Font

Inherited from
TextIncludes
implicit def jfxFontPosture2sfx(e: FontPosture): FontPosture

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontPosture.html FontPosture]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontPosture.html FontPosture]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX FontPosture

Returns

ScalaFX FontPosture

Inherited from
TextIncludes
implicit def jfxFontSmoothingType2sfx(e: FontSmoothingType): FontSmoothingType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontSmoothingType.html FontSmoothingType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontSmoothingType.html FontSmoothingType]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX FontSmoothingType

Returns

ScalaFX FontSmoothingType

Inherited from
TextIncludes
implicit def jfxFontWeight2sfx(e: FontWeight): FontWeight

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontWeight.html FontWeight]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontWeight.html FontWeight]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX FontWeight

Returns

ScalaFX FontWeight

Inherited from
TextIncludes
implicit def jfxFormatStringConverter2sfx[T <: AnyRef](c: FormatStringConverter[T]): FormatStringConverter[T]
Inherited from
ConverterIncludes
implicit def jfxGaussianBlur2sfx(gb: GaussianBlur): GaussianBlur

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/GaussianBlur.html GaussianBlur]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/GaussianBlur.html GaussianBlur]] instance to its ScalaFX counterpart.

Value Params
gb

JavaFX GaussianBlur

Returns

ScalaFX GaussianBlur

Inherited from
EffectIncludes
implicit def jfxGestureEvent2sfx(ge: GestureEvent): GestureEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/GestureEvent.html GestureEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/GestureEvent.html GestureEvent]] instance to its ScalaFX counterpart.

Value Params
ge

JavaFX GestureEvent

Returns

ScalaFX GestureEvent

Inherited from
InputIncludes
implicit def jfxGlow2sfx(g: Glow): Glow

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Glow.html Glow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Glow.html Glow]] instance to its ScalaFX counterpart.

Value Params
g

JavaFX Glow

Returns

ScalaFX Glow

Inherited from
EffectIncludes
implicit def jfxGraphicsContext2sfx(gc: GraphicsContext): GraphicsContext

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/canvas/GraphicsContext.html GraphicsContext]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/canvas/GraphicsContext.html GraphicsContext]] instance to its ScalaFX counterpart.

Value Params
gc

JavaFX GraphicsContext

Returns

ScalaFX GraphicsContext

Inherited from
CanvasIncludes
implicit def jfxGridPane2sfx(v: GridPane): GridPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/GridPane.html GridPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/GridPane.html GridPane]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX GridPane

Returns

ScalaFX GridPane

Inherited from
LayoutIncludes
implicit def jfxGroup2sfx(v: Group): Group

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

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

Value Params
v

JavaFX Group

Returns

ScalaFX Group

Inherited from
LowerPriorityIncludes
implicit def jfxHBox2sfx(v: HBox): HBox

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/HBox.html HBox]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/HBox.html HBox]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX HBox

Returns

ScalaFX HBox

Inherited from
LayoutIncludes
implicit def jfxHLineTo2sfx(h: HLineTo): HLineTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/HLineTo.html HLineTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/HLineTo.html HLineTo]] instance to its ScalaFX counterpart.

Value Params
h

JavaFX HLineTo

Returns

ScalaFX HLineTo

Inherited from
ShapeIncludes
implicit def jfxHPos2sfx(h: HPos): HPos

Converts a `javafx.geometry.HPos` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.HPos` instance to its ScalaFX counterpart.

Value Params
h

JavaFX HPos

Returns

ScalaFX HPos

Inherited from
GeometryIncludes
implicit def jfxHTMLEditor2sfx(he: HTMLEditor): HTMLEditor

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/HTMLEditor.html HTMLEditor]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/HTMLEditor.html HTMLEditor]] instance to its ScalaFX counterpart.

Value Params
he

JavaFX HTMLEditor

Returns

ScalaFX HTMLEditor

Inherited from
WebIncludes
implicit def jfxHorizontalDirection2sfx(h: HorizontalDirection): HorizontalDirection

Converts a `javafx.geometry.HorizontalDirection` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.HorizontalDirection` instance to its ScalaFX counterpart.

Value Params
h

JavaFX HorizontalDirection

Returns

ScalaFX HorizontalDirection

Inherited from
GeometryIncludes
implicit def jfxHostServices2sfx(e: HostServices): HostServices
Inherited from
ApplicationIncludes
implicit def jfxHyperlink2sfx(h: Hyperlink): Hyperlink

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Hyperlink.html Hyperlink]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Hyperlink.html Hyperlink]] instance to its ScalaFX counterpart.

Value Params
h

JavaFX Hyperlink

Returns

ScalaFX Hyperlink

Inherited from
ControlIncludes
implicit def jfxImage2sfx(i: Image): Image

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/Image.html Image]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/Image.html Image]] instance to its ScalaFX counterpart.

Value Params
i

JavaFX Image

Returns

ScalaFX Image

Inherited from
ImageIncludes
implicit def jfxImageCursor2sfx(ic: ImageCursor): ImageCursor

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

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

Value Params
ic

JavaFX ImageCursor

Returns

ScalaFX ImageCursor

Inherited from
LowerPriorityIncludes
implicit def jfxImageInput2sfx(ii: ImageInput): ImageInput

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ImageInput.html ImageInput]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ImageInput.html ImageInput]] instance to its ScalaFX counterpart.

Value Params
ii

JavaFX ImageInput

Returns

ScalaFX ImageInput

Inherited from
EffectIncludes
implicit def jfxImageView2sfx(iv: ImageView): ImageView

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/ImageView.html ImageView]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/ImageView.html ImageView]] instance to its ScalaFX counterpart.

Value Params
iv

JavaFX ImageView

Returns

ScalaFX ImageView

Inherited from
ImageIncludes
implicit def jfxIndexRange2sfx(r: IndexRange): IndexRange

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/IndexRange.html IndexRange]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/IndexRange.html IndexRange]] instance to its ScalaFX counterpart.

Value Params
r

JavaFX IndexRange

Returns

ScalaFX IndexRange

Inherited from
ControlIncludes
implicit def jfxIndexedCell2sfx[T](c: IndexedCell[T]): IndexedCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/IndexedCell.html IndexedCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/IndexedCell.html IndexedCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the IndexedCell

Value Params
c

JavaFX IndexedCell

Returns

ScalaFX IndexedCell

Inherited from
ControlIncludes
implicit def jfxInnerShadow2sfx(ii: InnerShadow): InnerShadow

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/InnerShadow.html InnerShadow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/InnerShadow.html InnerShadow]] instance to its ScalaFX counterpart.

Value Params
ii

JavaFX InnerShadow

Returns

ScalaFX InnerShadow

Inherited from
EffectIncludes
implicit def jfxInputEvent2sfx(ie: InputEvent): InputEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputEvent.html InputEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputEvent.html InputEvent]] instance to its ScalaFX counterpart.

Value Params
ie

JavaFX InputEvent

Returns

ScalaFX InputEvent

Inherited from
InputIncludes
implicit def jfxInputMethodEvent2sfx(ime: InputMethodEvent): InputMethodEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodEvent.html InputMethodEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodEvent.html InputMethodEvent]] instance to its ScalaFX counterpart.

Value Params
ime

JavaFX InputMethodEvent

Returns

ScalaFX InputMethodEvent

Inherited from
InputIncludes
implicit def jfxInputMethodHighlight2sfx(e: InputMethodHighlight): InputMethodHighlight

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodHighlight.html InputMethodHighlight]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodHighlight.html InputMethodHighlight]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX InputMethodHighlight

Returns

ScalaFX InputMethodHighlight

Inherited from
InputIncludes
implicit def jfxInputMethodTextRun2sfx(imtr: InputMethodTextRun): InputMethodTextRun

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodTextRun.html InputMethodTextRun]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodTextRun.html InputMethodTextRun]] instance to its ScalaFX counterpart.

Value Params
imtr

JavaFX InputMethodTextRun

Returns

ScalaFX InputMethodTextRun

Inherited from
InputIncludes
implicit def jfxInsets2sfx(i: Insets): Insets

Converts a `javafx.geometry.Insets` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Insets` instance to its ScalaFX counterpart.

Value Params
i

JavaFX Insets

Returns

ScalaFX Insets

Inherited from
GeometryIncludes
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 Params
p

JavaFX BooleanProperty

Returns

ScalaFX BooleanProperty

Inherited from
PropertyIncludes
implicit def jfxIntegerSpinnerValueFactory2sfx(ev: IntegerSpinnerValueFactory): IntegerSpinnerValueFactory
Inherited from
ControlIncludes
implicit def jfxIntegerStringConverter2sfx(c: IntegerStringConverter): IntStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/IntegerStringConverter.html IntegerStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/IntegerStringConverter.html IntegerStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX IntegerStringConverter

Returns

ScalaFX IntegerStringConverter

Inherited from
ConverterIncludes
implicit def jfxInterpolatable2sfxFunction2[T](i: Interpolatable[T]): (T, Double) => T

Converts a `Interpolatable` to a scala.Function2.

Converts a `Interpolatable` to a scala.Function2.

Type Params
T

type of function

Value Params
i

`Interpolatable` instance

Returns

A scala.Function2 that receives a instance of T and a Double (between 0.0 and 1.0) and returns a T Instance according interpolate method

Inherited from
AnimationIncludes
implicit def jfxJobSettings2sfx(js: JobSettings): JobSettings

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterJob.JobStatus$.html PrinterJob.JobStatus]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterJob.JobStatus$.html PrinterJob.JobStatus]] instance to its ScalaFX counterpart.

Value Params
js

JavaFX PrinterJob.JobStatus

Returns

ScalaFX PrinterJob.JobStatus

Inherited from
PrintIncludes
implicit def jfxKeyCharacterCombination2sfx(kcc: KeyCharacterCombination): KeyCharacterCombination

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCharacterCombination.html KeyCharacterCombination]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCharacterCombination.html KeyCharacterCombination]] instance to its ScalaFX counterpart.

Value Params
kcc

JavaFX KeyCharacterCombination

Returns

ScalaFX KeyCharacterCombination

Inherited from
InputIncludes
implicit def jfxKeyCode2sfx(e: KeyCode): KeyCode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCode.html KeyCode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCode.html KeyCode]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX KeyCode

Returns

ScalaFX KeyCode

Inherited from
InputIncludes
implicit def jfxKeyCodeCombination2sfx(kcc: KeyCodeCombination): KeyCodeCombination

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCodeCombination.html KeyCodeCombination]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCodeCombination.html KeyCodeCombination]] instance to its ScalaFX counterpart.

Value Params
kcc

JavaFX KeyCodeCombination

Returns

ScalaFX KeyCodeCombination

Inherited from
InputIncludes
implicit def jfxKeyCombination2sfx(kc: KeyCombination): KeyCombination

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.html KeyCombination]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.html KeyCombination]] instance to its ScalaFX counterpart.

Value Params
kc

JavaFX KeyCombination

Returns

ScalaFX KeyCombination

Inherited from
InputIncludes
implicit def jfxKeyCombinationModifier2sfx(m: Modifier): Modifier

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.Modifier.html KeyCombination.Modifier]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.Modifier.html KeyCombination.Modifier]] instance to its ScalaFX counterpart.

Value Params
m

JavaFX KeyCombination.Modifier

Returns

ScalaFX KeyCombination.Modifier

Inherited from
InputIncludes
implicit def jfxKeyEvent2sfx(ke: KeyEvent): KeyEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyEvent.html KeyEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyEvent.html KeyEvent]] instance to its ScalaFX counterpart.

Value Params
ke

JavaFX KeyEvent

Returns

ScalaFX KeyEvent

Inherited from
InputIncludes
implicit def jfxKeyFrame2sfx(v: KeyFrame): KeyFrame

Generates a ScalaFX KeyFrame from its JavaFX counterparty.

Generates a ScalaFX KeyFrame from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxKeyValue2sfx(v: KeyValue): KeyValue[Nothing, Nothing]

Generates a ScalaFX KeyValue from its JavaFX counterparty.

Generates a ScalaFX KeyValue from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxLabel2sfx(l: Label): Label

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Label.html Label]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Label.html Label]] instance to its ScalaFX counterpart.

Value Params
l

JavaFX Label

Returns

ScalaFX Label

Inherited from
ControlIncludes
implicit def jfxLabeled2sfx(l: Labeled): Labeled

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Labeled.html Labeled]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Labeled.html Labeled]] instance to its ScalaFX counterpart.

Value Params
l

JavaFX Labeled

Returns

ScalaFX Labeled

Inherited from
ControlIncludes
implicit def jfxLight2sfx(l: Light): Light

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.html Light]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.html Light]] instance to its ScalaFX counterpart.

Value Params
l

JavaFX Light

Returns

ScalaFX Light

Inherited from
EffectIncludes
implicit def jfxLightBase2sfx(v: LightBase): LightBase
Inherited from
LowerPriorityIncludes
implicit def jfxLightDistant2sfx(d: Distant): Distant

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Distant.html Light.Distant]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Distant.html Light.Distant]] instance to its ScalaFX counterpart.

Value Params
d

JavaFX Light.Distant

Returns

ScalaFX Light.Distant

Inherited from
EffectIncludes
implicit def jfxLightPoint2sfx(p: Point): Point

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Point.html Light.Point]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Point.html Light.Point]] instance to its ScalaFX counterpart.

Value Params
p

JavaFX Light.Point

Returns

ScalaFX Light.Point

Inherited from
EffectIncludes
implicit def jfxLightSpot2sfx(s: Spot): Spot

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Spot.html Light.Spot]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Spot.html Light.Spot]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX Light.Spot

Returns

ScalaFX Light.Spot

Inherited from
EffectIncludes
implicit def jfxLighting2sfx(l: Lighting): Lighting

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Lighting.html Lighting]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Lighting.html Lighting]] instance to its ScalaFX counterpart.

Value Params
l

JavaFX Lighting

Returns

ScalaFX Lighting

Inherited from
EffectIncludes
implicit def jfxLine2sfx(r: Line): Line

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Line.html Line]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Line.html Line]] instance to its ScalaFX counterpart.

Value Params
r

JavaFX Line

Returns

ScalaFX Line

Inherited from
ShapeIncludes
implicit def jfxLineChart2sfx[X, Y](b: LineChart[X, Y]): LineChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/LineChart.html LineChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/LineChart.html LineChart]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type

Y

Y Axis Type

Value Params
b

JavaFX LineChart

Returns

ScalaFX LineChart

Inherited from
ChartIncludes
implicit def jfxLineChartSortingPolicy2sfx(v: SortingPolicy): SortingPolicy
Inherited from
ChartIncludes
implicit def jfxLineTo2sfx(l: LineTo): LineTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/LineTo.html LineTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/LineTo.html LineTo]] instance to its ScalaFX counterpart.

Value Params
l

JavaFX LineTo

Returns

ScalaFX LineTo

Inherited from
ShapeIncludes
implicit def jfxLinearGradient2sfx(lg: LinearGradient): LinearGradient

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/LinearGradient.html LinearGradient]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/LinearGradient.html LinearGradient]] instance to its ScalaFX counterpart.

Value Params
lg

JavaFX LinearGradient

Returns

ScalaFX LinearGradient

Inherited from
PaintIncludes
implicit def jfxListBinding2sfx[E](v: ListBinding[E]): BufferBinding[E]
Inherited from
BindingIncludes
implicit def jfxListCell[T](l: ListCell[T]): ListCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ListCell.html ListCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ListCell.html ListCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the ListCell

Value Params
l

JavaFX ListCell

Returns

ScalaFX ListCell

Inherited from
ControlIncludes
implicit def jfxListExpression2sfx[E](v: ListExpression[E]): BufferExpression[E]
Inherited from
BindingIncludes
implicit def jfxListProperty2sfx[E](p: ListProperty[E]): BufferProperty[E]
Inherited from
PropertyIncludes
implicit def jfxListSpinnerValueFactory2sfx[T](ev: ListSpinnerValueFactory[T]): ListSpinnerValueFactory[T]
Inherited from
ControlIncludes
implicit def jfxListView2sfx[T](l: ListView[T]): ListView[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ListView.html ListView]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ListView.html ListView]] instance to its ScalaFX counterpart.

Type Params
T

The type of the ListView

Value Params
l

JavaFX ListView

Returns

ScalaFX ListView

Inherited from
ControlIncludes
implicit def jfxListViewEditEvent2sfx[T](l: EditEvent[T]): EditEvent[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ListView.EditEvent.html ListView.EditEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ListView.EditEvent.html ListView.EditEvent]] instance to its ScalaFX counterpart.

Type Params
T

The type of the ListView.EditEvent

Value Params
l

JavaFX ListView.EditEvent

Returns

ScalaFX ListView.EditEvent

Inherited from
ControlIncludes
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 Params
p

JavaFX LongProperty

Returns

ScalaFX LongProperty

Inherited from
PropertyIncludes
implicit def jfxLongStringConverter2sfx(c: LongStringConverter): LongStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/LongStringConverter.html LongStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/LongStringConverter.html LongStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX LongStringConverter

Returns

ScalaFX LongStringConverter

Inherited from
ConverterIncludes
implicit def jfxMapBinding2sfx[K, V](v: MapBinding[K, V]): MapBinding[K, V]
Inherited from
BindingIncludes
implicit def jfxMapExpression2sfx[K, V](v: MapExpression[K, V]): MapExpression[K, V]
Inherited from
BindingIncludes
implicit def jfxMapProperty2sfx[K, V](p: MapProperty[K, V]): MapProperty[K, V]
Inherited from
PropertyIncludes
implicit def jfxMatrixType2sfx(v: MatrixType): MatrixType
Inherited from
TransformIncludes
implicit def jfxMedia2sfx(m: Media): Media

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/Media.html Media]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/Media.html Media]] instance to its ScalaFX counterpart.

Value Params
m

JavaFX Media

Returns

ScalaFX Media

Inherited from
MediaIncludes
implicit def jfxMediaErrorEvent2sfx(mee: MediaErrorEvent): MediaErrorEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaErrorEvent.html MediaErrorEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaErrorEvent.html MediaErrorEvent]] instance to its ScalaFX counterpart.

Value Params
mee

JavaFX MediaErrorEvent

Returns

ScalaFX MediaErrorEvent

Inherited from
MediaIncludes
implicit def jfxMediaException2sfx(me: MediaException): MediaException

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaException.html MediaException]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaException.html MediaException]] instance to its ScalaFX counterpart.

Value Params
me

JavaFX MediaException

Returns

ScalaFX MediaException

Inherited from
MediaIncludes
implicit def jfxMediaExceptionType2sfx(t: Type): Type

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaException.Type.html MediaException.Type]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaException.Type.html MediaException.Type]] instance to its ScalaFX counterpart.

Value Params
t

JavaFX MediaException.Type

Returns

ScalaFX MediaException.Type

Inherited from
MediaIncludes
implicit def jfxMediaMarkerEvent2sfx(mme: MediaMarkerEvent): MediaMarkerEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaMarkerEvent.html MediaMarkerEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaMarkerEvent.html MediaMarkerEvent]] instance to its ScalaFX counterpart.

Value Params
mme

JavaFX MediaMarkerEvent

Returns

ScalaFX MediaMarkerEvent

Inherited from
MediaIncludes
implicit def jfxMediaPlayer2sfx(mp: MediaPlayer): MediaPlayer

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaPlayer.html MediaPlayer]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaPlayer.html MediaPlayer]] instance to its ScalaFX counterpart.

Value Params
mp

JavaFX MediaPlayer

Returns

ScalaFX MediaPlayer

Inherited from
MediaIncludes
implicit def jfxMediaPlayerStatus2sfx(s: Status): Status

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaPlayer.Status.html MediaPlayer.Status]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaPlayer.Status.html MediaPlayer.Status]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX MediaPlayer.Status

Returns

ScalaFX MediaPlayer.Status

Inherited from
MediaIncludes
implicit def jfxMediaView2sfx(mv: MediaView): MediaView

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaView.html MediaView]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaView.html MediaView]] instance to its ScalaFX counterpart.

Value Params
mv

JavaFX MediaView

Returns

ScalaFX MediaView

Inherited from
MediaIncludes
implicit def jfxMenu2sfx(h: Menu): Menu

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Menu.html Menu]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Menu.html Menu]] instance to its ScalaFX counterpart.

Value Params
h

JavaFX Menu

Returns

ScalaFX Menu

Inherited from
ControlIncludes
implicit def jfxMenuBar2sfx(h: MenuBar): MenuBar

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/MenuBar.html MenuBar]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/MenuBar.html MenuBar]] instance to its ScalaFX counterpart.

Value Params
h

JavaFX MenuBar

Returns

ScalaFX MenuBar

Inherited from
ControlIncludes
implicit def jfxMenuButton2sfx(h: MenuButton): MenuButton

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/MenuButton.html MenuButton]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/MenuButton.html MenuButton]] instance to its ScalaFX counterpart.

Value Params
h

JavaFX MenuButton

Returns

ScalaFX MenuButton

Inherited from
ControlIncludes
implicit def jfxMenuItem2sfx(m: MenuItem): MenuItem

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/MenuItem.html MenuItem]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/MenuItem.html MenuItem]] instance to its ScalaFX counterpart.

Value Params
m

JavaFX MenuItem

Returns

ScalaFX MenuItem

Inherited from
ControlIncludes
implicit def jfxMeshView2sfx(mv: MeshView): MeshView
Inherited from
ShapeIncludes
implicit def jfxMnemonic2sfx(m: Mnemonic): Mnemonic

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Mnemonic.html Mnemonic]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Mnemonic.html Mnemonic]] instance to its ScalaFX counterpart.

Value Params
m

JavaFX Mnemonic

Returns

ScalaFX Mnemonic

Inherited from
InputIncludes
implicit def jfxModality2sfx(e: Modality): Modality

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Modality.html Modality]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Modality.html Modality]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX Modality

Returns

ScalaFX Modality

Inherited from
StageIncludes
implicit def jfxModifierValue2sfx(mv: ModifierValue): ModifierValue

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.ModifierValue.html KeyCombination.ModifierValue]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.ModifierValue.html KeyCombination.ModifierValue]] instance to its ScalaFX counterpart.

Value Params
mv

JavaFX KeyCombination.ModifierValue

Returns

ScalaFX KeyCombination.ModifierValue

Inherited from
InputIncludes
implicit def jfxMotionBlur2sfx(mb: MotionBlur): MotionBlur

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/MotionBlur.html MotionBlur]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/MotionBlur.html MotionBlur]] instance to its ScalaFX counterpart.

Value Params
mb

JavaFX MotionBlur

Returns

ScalaFX MotionBlur

Inherited from
EffectIncludes
implicit def jfxMouseButton2sfx(e: MouseButton): MouseButton

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseButton.html MouseButton]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseButton.html MouseButton]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX MouseButton

Returns

ScalaFX MouseButton

Inherited from
InputIncludes
implicit def jfxMouseDragEvent2sfx(mde: MouseDragEvent): MouseDragEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseDragEvent.html MouseDragEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseDragEvent.html MouseDragEvent]] instance to its ScalaFX counterpart.

Value Params
mde

JavaFX MouseDragEvent

Returns

ScalaFX MouseDragEvent

Inherited from
InputIncludes
implicit def jfxMouseEvent2sfx(me: MouseEvent): MouseEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseEvent.html MouseEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseEvent.html MouseEvent]] instance to its ScalaFX counterpart.

Value Params
me

JavaFX MouseEvent

Returns

ScalaFX MouseEvent

Inherited from
InputIncludes
implicit def jfxMoveTo2sfx(l: MoveTo): MoveTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/MoveTo.html MoveTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/MoveTo.html MoveTo]] instance to its ScalaFX counterpart.

Value Params
l

JavaFX MoveTo

Returns

ScalaFX MoveTo

Inherited from
ShapeIncludes
implicit def jfxMultipleSelectionModel2sfx[T](v: MultipleSelectionModel[T]): MultipleSelectionModel[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/MultipleSelectionModel.html MultipleSelectionModel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/MultipleSelectionModel.html MultipleSelectionModel]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX MultipleSelectionModel

Returns

ScalaFX MultipleSelectionModel

Inherited from
ControlIncludes
implicit def jfxNode2sfx(v: Node): Node

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

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

Value Params
v

JavaFX Node

Returns

ScalaFX Node

Inherited from
LowerPriorityIncludes
implicit def jfxNodeOrientation2sfx(e: NodeOrientation): NodeOrientation

Converts a `javafx.geometry.NodeOrientation` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.NodeOrientation` instance to its ScalaFX counterpart.

Value Params
e

JavaFX NodeOrientation

Returns

ScalaFX NodeOrientation

Inherited from
GeometryIncludes
implicit def jfxNonInvertibleTransformException2sfx(v: NonInvertibleTransformException): NonInvertibleTransformException
Inherited from
TransformIncludes
implicit def jfxNumberAxis2sfx(b: NumberAxis): NumberAxis

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/NumberAxis.html NumberAxis]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/NumberAxis.html NumberAxis]] instance to its ScalaFX counterpart.

Value Params
b

JavaFX NumberAxis

Returns

ScalaFX NumberAxis

Inherited from
ChartIncludes
implicit def jfxNumberAxisDefaultFormatter2sfx(b: DefaultFormatter): DefaultFormatter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/NumberAxis.DefaultFormatter.html NumberAxis.DefaultFormatter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/NumberAxis.DefaultFormatter.html NumberAxis.DefaultFormatter]] instance to its ScalaFX counterpart.

Value Params
b

JavaFX NumberAxis.DefaultFormatter

Returns

ScalaFX NumberAxis.DefaultFormatter

Inherited from
ChartIncludes
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 Params
nb

JavaFX NumberBinding

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 Params
ne

JavaFX NumberExpression

Returns

ScalaFX NumberExpression

Inherited from
BindingIncludes
implicit def jfxNumberStringConverter2sfx(c: NumberStringConverter): NumberStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/NumberStringConverter.html NumberStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/NumberStringConverter.html NumberStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX NumberStringConverter

Returns

ScalaFX NumberStringConverter

Inherited from
ConverterIncludes
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 Params
T

ObjectBinding Type

Value Params
ob

JavaFX ObjectBinding

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 Params
T

ObjectExpression Type

Value Params
oe

JavaFX ObjectExpression

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 Params
T

ObjectProperty Type

Value Params
p

JavaFX ObjectProperty

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 Params
o

JavaFX Observable

Returns

ScalaFX Observable

Inherited from
LowerPriorityIncludes
Value Params
ofa

JavaFX ObservableFloatArray

Returns

ScalaFX ObservableFloatArray

Inherited from
CollectionIncludes
Value Params
oia

JavaFX ObservableIntegerArray

Returns

ScalaFX ObservableIntegerArray

Inherited from
CollectionIncludes
implicit def jfxObservableMap2sfxObservableMap[K, V](om: ObservableMap[K, V]): ObservableMap[K, V]

Converts a JavaFX `ObservableMap` to a ScalaFX scalafx.collections.ObservableMap.

Converts a JavaFX `ObservableMap` to a ScalaFX scalafx.collections.ObservableMap.

Type Params
K

Key Type

V

Value Type

Value Params
om

JavaFX ObservableMap

Returns

ScalaFX ObservableMap

Inherited from
CollectionIncludes
implicit def jfxObservableSet2sfxObservableSet[T](os: ObservableSet[T]): ObservableHashSet[T]

Converts a JavaFX `ObservableSet` to a ScalaFX scalafx.collections.ObservableSet.

Converts a JavaFX `ObservableSet` to a ScalaFX scalafx.collections.ObservableSet.

Type Params
T

Set Type

Value Params
os

JavaFX ObservableSet

Returns

ScalaFX ObservableSet

Inherited from
CollectionIncludes
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 Params
o

JavaFX ObservableValue

Returns

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

Inherited from
LowerPriorityIncludes
implicit def jfxOrientation2sfx(e: Orientation): Orientation

Converts a `javafx.geometry.Orientation` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Orientation` instance to its ScalaFX counterpart.

Value Params
e

JavaFX Orientation

Returns

ScalaFX Orientation

Inherited from
GeometryIncludes
implicit def jfxOverrunStyle2sfx(e: OverrunStyle): OverrunStyle

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/OverrunStyle.html OverrunStyle]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/OverrunStyle.html OverrunStyle]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX OverrunStyle

Returns

ScalaFX OverrunStyle

Inherited from
ControlIncludes
implicit def jfxPageLayout2sfx(pl: PageLayout): PageLayout

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PageLayout$.html PageLayout]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PageLayout$.html PageLayout]] instance to its ScalaFX counterpart.

Value Params
pl

JavaFX PageLayout

Returns

ScalaFX PageLayout

Inherited from
PrintIncludes
implicit def jfxPageOrientation2sfx(po: PageOrientation): PageOrientation

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

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

Value Params
po

JavaFX PageOrientation

Returns

ScalaFX PageOrientation

Inherited from
PrintIncludes
implicit def jfxPageRange2sfx(pr: PageRange): PageRange

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

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

Value Params
pr

JavaFX PrintResolution

Returns

ScalaFX PrintResolution

Inherited from
PrintIncludes
implicit def jfxPagination2sfx(p: Pagination): Pagination

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Pagination.html Pagination]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Pagination.html Pagination]] instance to its ScalaFX counterpart.

Value Params
p

JavaFX Pagination

Returns

ScalaFX Pagination

Inherited from
ControlIncludes
implicit def jfxPaint2sfx(p: Paint): Paint

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Paint.html Paint]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Paint.html Paint]] instance to its ScalaFX counterpart.

Value Params
p

JavaFX Paint

Returns

ScalaFX Paint

Inherited from
PaintIncludes
implicit def jfxPair2Tuple2[K, V](p: Pair[K, V]): (K, V)

Convert a JavaFX Pair in a Scala Tuple2.

Convert a JavaFX Pair in a Scala Tuple2.

Type Params
K

Key Type

V

Value Type

Value Params
p

JavaFX Pair

Returns

A Scala Tuple2 generated from Pair.

Inherited from
UtilIncludes
implicit def jfxPane2sfx(v: Pane): Pane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Pane.html Pane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Pane.html Pane]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX Pane

Returns

ScalaFX Pane

Inherited from
LayoutIncludes
implicit def jfxPanel2sfx(p: JFXPanel): SFXPanel

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/embed/swing/JFXPanel$.html JFXPanel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/embed/swing/JFXPanel$.html JFXPanel]] instance to its ScalaFX counterpart.

Value Params
p

JFXPanel

Returns

SFXPanel

Inherited from
SwingIncludes
implicit def jfxPaper2sfx(pp: Paper): Paper

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

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

Value Params
pp

JavaFX Paper

Returns

ScalaFX Paper

Inherited from
PrintIncludes
implicit def jfxPaperSource2sfx(ps: PaperSource): PaperSource

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

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

Value Params
ps

JavaFX PrintSides

Returns

ScalaFX Paper

Inherited from
PrintIncludes
implicit def jfxParallelCamera2sfx(v: ParallelCamera): ParallelCamera

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

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

Value Params
v

JavaFX ParallelCamera

Returns

ScalaFX ParallelCamera

Inherited from
LowerPriorityIncludes
implicit def jfxParallelTransition2sfx(v: ParallelTransition): ParallelTransition

Generates a ScalaFX ParallelTransition from its JavaFX counterparty.

Generates a ScalaFX ParallelTransition from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxParameters2sfx(p: Parameters): Parameters

Converts a `javafx.application.Application.Parameters` instance to its ScalaFX counterpart.

Converts a `javafx.application.Application.Parameters` instance to its ScalaFX counterpart.

Value Params
p

JavaFX Parameters

Returns

ScalaFX Parameters

Inherited from
ApplicationIncludes
implicit def jfxParent2sfx(v: Parent): Parent

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

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

Value Params
v

JavaFX Parent

Returns

ScalaFX Parent

Inherited from
LowerPriorityIncludes
implicit def jfxPasswordField2sfx(v: PasswordField): PasswordField

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/PasswordField.html PasswordField]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/PasswordField.html PasswordField]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX PasswordField

Returns

ScalaFX PasswordField

Inherited from
ControlIncludes
implicit def jfxPath2sfx(r: Path): Path

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Path.html Path]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Path.html Path]] instance to its ScalaFX counterpart.

Value Params
r

JavaFX Path

Returns

ScalaFX Path

Inherited from
ShapeIncludes
implicit def jfxPathElement2sfx(e: PathElement): PathElement

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/PathElement.html PathElement]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/PathElement.html PathElement]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX PathElement

Returns

ScalaFX PathElement

Inherited from
ShapeIncludes
implicit def jfxPathTransition2sfx(v: PathTransition): PathTransition

Generates a ScalaFX PathTransition from its JavaFX counterparty.

Generates a ScalaFX PathTransition from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxPathTransitionOrientationType2sfx(v: OrientationType): OrientationType

Generates a ScalaFX PathTransition.OrientationType from its JavaFX counterparty.

Generates a ScalaFX PathTransition.OrientationType from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxPauseTransition2sfx(v: PauseTransition): PauseTransition

Generates a ScalaFX PauseTransition from its JavaFX counterparty.

Generates a ScalaFX PauseTransition from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxPercentageStringConverter2sfx(c: PercentageStringConverter): PercentageStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/PercentageStringConverter.html PercentageStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/PercentageStringConverter.html PercentageStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX PercentageStringConverter

Returns

ScalaFX PercentageStringConverter

Inherited from
ConverterIncludes
implicit def jfxPerspectiveCamera2sfx(v: PerspectiveCamera): PerspectiveCamera

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

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

Value Params
v

JavaFX PerspectiveCamera

Returns

ScalaFX PerspectiveCamera

Inherited from
LowerPriorityIncludes
implicit def jfxPerspectiveTransform2sfx(pt: PerspectiveTransform): PerspectiveTransform

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/PerspectiveTransform.html PerspectiveTransform]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/PerspectiveTransform.html PerspectiveTransform]] instance to its ScalaFX counterpart.

Value Params
pt

JavaFX PerspectiveTransform

Returns

ScalaFX PerspectiveTransform

Inherited from
EffectIncludes
implicit def jfxPhongMaterial2sfx(pm: PhongMaterial): PhongMaterial

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/PhongMaterial.html PhongMaterial]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/PhongMaterial.html PhongMaterial]] instance to its ScalaFX counterpart.

Value Params
pm

JavaFX PhongMaterial

Returns

ScalaFX PhongMaterial

Inherited from
PaintIncludes
implicit def jfxPickResult2sfx(m: PickResult): PickResult
Inherited from
InputIncludes
implicit def jfxPieChart2sfx(b: PieChart): PieChart

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/PieChart.html PieChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/PieChart.html PieChart]] instance to its ScalaFX counterpart.

Value Params
b

JavaFX PieChart

Returns

ScalaFX PieChart

Inherited from
ChartIncludes
implicit def jfxPieChartData2sfx(b: Data): Data

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/PieChart.Data.html PieChart.Data]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/PieChart.Data.html PieChart.Data]] instance to its ScalaFX counterpart.

Value Params
b

JavaFX PieChart.Data

Returns

ScalaFX PieChart.Data

Inherited from
ChartIncludes
implicit def jfxPixelFormat2sfx[B <: Buffer](pf: PixelFormat[B]): PixelFormat[B]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelFormat.html PixelFormat]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelFormat.html PixelFormat]] instance to its ScalaFX counterpart.

Value Params
pf

JavaFX PixelFormat

Returns

ScalaFX PixelFormat

Inherited from
ImageIncludes
implicit def jfxPixelReader2sfx(pr: PixelReader): PixelReader

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelReader.html PixelReader]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelReader.html PixelReader]] instance to its ScalaFX counterpart.

Value Params
pr

JavaFX PixelReader

Returns

ScalaFX PixelReader

Inherited from
ImageIncludes
implicit def jfxPixelWriter2sfx(pw: PixelWriter): PixelWriter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelWriter.html PixelWriter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelWriter.html PixelWriter]] instance to its ScalaFX counterpart.

Value Params
pw

JavaFX PixelWriter

Returns

ScalaFX PixelWriter

Inherited from
ImageIncludes
implicit def jfxPoint2D2sfx(p: Point2D): Point2D

Converts a `javafx.geometry.Point2D` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Point2D` instance to its ScalaFX counterpart.

Value Params
p

JavaFX Point2D

Returns

ScalaFX Point2D

Inherited from
GeometryIncludes
implicit def jfxPoint3D2sfx(p: Point3D): Point3D

Converts a `javafx.geometry.Point3D` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Point3D` instance to its ScalaFX counterpart.

Value Params
p

JavaFX Point3D

Returns

ScalaFX Point3D

Inherited from
GeometryIncludes
implicit def jfxPointLight2sfx(v: PointLight): PointLight
Inherited from
LowerPriorityIncludes
implicit def jfxPolygon2sfx(p: Polygon): Polygon

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Polygon.html Polygon]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Polygon.html Polygon]] instance to its ScalaFX counterpart.

Value Params
p

JavaFX Polygon

Returns

ScalaFX Polygon

Inherited from
ShapeIncludes
implicit def jfxPolyline2sfx(p: Polyline): Polyline

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Polyline.html Polyline]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Polyline.html Polyline]] instance to its ScalaFX counterpart.

Value Params
p

JavaFX Polyline

Returns

ScalaFX Polyline

Inherited from
ShapeIncludes
implicit def jfxPopup2sfx(p: Popup): Popup

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Popup.html Popup]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Popup.html Popup]] instance to its ScalaFX counterpart.

Value Params
p

JavaFX Popup

Returns

ScalaFX Popup

Inherited from
StageIncludes
implicit def jfxPopupControl2sfx(v: PopupControl): PopupControl

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/PopupControl.html PopupControl]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/PopupControl.html PopupControl]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX PopupControl

Returns

ScalaFX PopupControl

Inherited from
ControlIncludes
implicit def jfxPopupFeatures2sfx(pf: PopupFeatures): PopupFeatures

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/PopupFeatures.html PopupFeatures]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/PopupFeatures.html PopupFeatures]] instance to its ScalaFX counterpart.

Value Params
pf

JavaFX PopupFeatures

Returns

ScalaFX PopupFeatures

Inherited from
WebIncludes
implicit def jfxPopupWindow2sfx(pw: PopupWindow): PopupWindow

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/PopupWindow.html PopupWindow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/PopupWindow.html PopupWindow]] instance to its ScalaFX counterpart.

Value Params
pw

JavaFX PopupWindow

Returns

ScalaFX PopupWindow

Inherited from
StageIncludes
implicit def jfxPopupWindowAnchorLocation2sfx(v: AnchorLocation): AnchorLocation

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/PopupWindow.AnchorLocation.html PopupWindow.AnchorLocation]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/PopupWindow.AnchorLocation.html PopupWindow.AnchorLocation]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX PopupWindow.AnchorLocation

Returns

ScalaFX PopupWindow.AnchorLocation

Inherited from
StageIncludes
implicit def jfxPos2sfx(p: Pos): Pos

Converts a `javafx.geometry.Pos` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Pos` instance to its ScalaFX counterpart.

Value Params
p

JavaFX Pos

Returns

ScalaFX Pos

Inherited from
GeometryIncludes
implicit def jfxPrintColor2sfx(pc: PrintColor): PrintColor

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

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

Value Params
pc

JavaFX PrintColor

Returns

ScalaFX PrintColor

Inherited from
PrintIncludes
implicit def jfxPrintJob2sfx(pj: PrinterJob): PrinterJob

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

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

Value Params
pj

JavaFX PrinterJob

Returns

ScalaFX PrinterJob

Inherited from
PrintIncludes
implicit def jfxPrintJobJobStatus2sfx(js: JobStatus): JobStatus

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterJob.JobStatus.html PrinterJob.JobStatus]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterJob.JobStatus.html PrinterJob.JobStatus]] instance to its ScalaFX counterpart.

Value Params
js

JavaFX PrinterJob.JobStatus

Returns

ScalaFX PrinterJob.JobStatus

Inherited from
PrintIncludes
implicit def jfxPrintQuality2sfx(pq: PrintQuality): PrintQuality

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

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

Value Params
pq

JavaFX PrintQuality

Returns

ScalaFX PrintQuality

Inherited from
PrintIncludes
implicit def jfxPrintResolution2sfx(pr: PrintResolution): PrintResolution

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

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

Value Params
pr

JavaFX PrintResolution

Returns

ScalaFX PrintResolution

Inherited from
PrintIncludes
implicit def jfxPrintSides2sfx(ps: PrintSides): PrintSides

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

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

Value Params
ps

JavaFX PrintSides

Returns

ScalaFX PrintSides

Inherited from
PrintIncludes
implicit def jfxPrinter2sfx(p: Printer): Printer

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

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

Value Params
p

JavaFX Printer

Returns

ScalaFX Printer

Inherited from
PrintIncludes
implicit def jfxPrinterAttributes2sfx(pa: PrinterAttributes): PrinterAttributes

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

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

Value Params
pa

JavaFX PrinterAttributes

Returns

ScalaFX PrinterAttributes

Inherited from
PrintIncludes
implicit def jfxPrinterMarginType2sfx(mt: MarginType): MarginType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Printer.MarginType.html Printer.MarginType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Printer.MarginType.html Printer.MarginType]] instance to its ScalaFX counterpart.

Value Params
mt

JavaFX Printer.MarginType

Returns

ScalaFX Printer.MarginType

Inherited from
PrintIncludes
implicit def jfxPriority2sfx(e: Priority): Priority

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Priority.html Priority]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Priority.html Priority]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX Priority

Returns

ScalaFX Priority

Inherited from
LayoutIncludes
implicit def jfxProgressBar2sfx(p: ProgressBar): ProgressBar

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ProgressBar.html ProgressBar]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ProgressBar.html ProgressBar]] instance to its ScalaFX counterpart.

Value Params
p

JavaFX ProgressBar

Returns

ScalaFX ProgressBar

Inherited from
ControlIncludes
implicit def jfxProgressBarTableCell2sfx[S](cell: ProgressBarTableCell[S]): ProgressBarTableCell[S]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ProgressBarTableCell.html ProgressBarTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ProgressBarTableCell.html ProgressBarTableCell]] instance to its ScalaFX counterpart.

Type Params
S

The type of the elements contained ...

Value Params
cell

JavaFX ProgressBarTableCell

Returns

ScalaFX ProgressBarTableCell

Inherited from
CellIncludes
implicit def jfxProgressIndicator2sfx(p: ProgressIndicator): ProgressIndicator

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ProgressIndicator.html ProgressIndicator]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ProgressIndicator.html ProgressIndicator]] instance to its ScalaFX counterpart.

Value Params
p

JavaFX ProgressIndicator

Returns

ScalaFX ProgressIndicator

Inherited from
ControlIncludes
implicit def jfxPromptData2sfx(pd: PromptData): PromptData

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/PromptData.html PromptData]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/PromptData.html PromptData]] instance to its ScalaFX counterpart.

Value Params
pd

JavaFX PromptData

Returns

ScalaFX PromptData

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

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

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

Value Params
d

JavaFX PseudoClass

Returns

ScalaFX PseudoClass

Inherited from
CssIncludes
implicit def jfxQuadCurve2sfx(q: QuadCurve): QuadCurve

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/QuadCurve.html QuadCurve]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/QuadCurve.html QuadCurve]] instance to its ScalaFX counterpart.

Value Params
q

JavaFX QuadCurve

Returns

ScalaFX QuadCurve

Inherited from
ShapeIncludes
implicit def jfxQuadCurveTo2sfx(q: QuadCurveTo): QuadCurveTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/QuadCurveTo.html QuadCurveTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/QuadCurveTo.html QuadCurveTo]] instance to its ScalaFX counterpart.

Value Params
q

JavaFX QuadCurveTo

Returns

ScalaFX QuadCurveTo

Inherited from
ShapeIncludes
implicit def jfxRadialGradient2sfx(rg: RadialGradient): RadialGradient

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/RadialGradient.html RadialGradient]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/RadialGradient.html RadialGradient]] instance to its ScalaFX counterpart.

Value Params
rg

JavaFX RadialGradient

Returns

ScalaFX RadialGradient

Inherited from
PaintIncludes
implicit def jfxRadioButton2sfx(rb: RadioButton): RadioButton

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/RadioButton.html RadioButton]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/RadioButton.html RadioButton]] instance to its ScalaFX counterpart.

Value Params
rb

JavaFX RadioButton

Returns

ScalaFX RadioButton

Inherited from
ControlIncludes
implicit def jfxRadioMenuItem2sfx(m: RadioMenuItem): RadioMenuItem

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/RadioMenuItem.html RadioMenuItem]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/RadioMenuItem.html RadioMenuItem]] instance to its ScalaFX counterpart.

Value Params
m

JavaFX RadioMenuItem

Returns

ScalaFX RadioMenuItem

Inherited from
ControlIncludes
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 Params
p

JavaFX ReadOnlyBooleanProperty

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 Params
p

JavaFX ReadOnlyStringWrapper

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 Params
p

JavaFX ReadOnlyDoubleProperty

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 Params
p

JavaFX ReadOnlyStringWrapper

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 Params
p

JavaFX ReadOnlyFloatProperty

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 Params
p

JavaFX ReadOnlyStringWrapper

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 Params
p

JavaFX ReadOnlyIntegerProperty

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 Params
p

JavaFX ReadOnlyStringWrapper

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from
PropertyIncludes
implicit def jfxReadOnlyListProperty2sfx[E](p: ReadOnlyListProperty[E]): ReadOnlyBufferProperty[E]
Inherited from
PropertyIncludes
implicit def jfxReadOnlyListWrapper2sfx[E](p: ReadOnlyListWrapper[E]): ReadOnlyBufferWrapper[E]
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 Params
p

JavaFX ReadOnlyLongProperty

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 Params
p

JavaFX ReadOnlyStringWrapper

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from
PropertyIncludes
implicit def jfxReadOnlyMapProperty2sfx[K, V](p: ReadOnlyMapProperty[K, V]): ReadOnlyMapProperty[K, V]
Inherited from
PropertyIncludes
implicit def jfxReadOnlyMapWrapper2sfx[K, V](p: ReadOnlyMapWrapper[K, V]): ReadOnlyMapWrapper[K, V]
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 Params
p

JavaFX ReadOnlyObjectProperty

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 Params
p

JavaFX ReadOnlyStringWrapper

Returns

ScalaFX ReadOnlyObjectWrapper

Inherited from
PropertyIncludes
implicit def jfxReadOnlySetProperty2sfx[E](p: ReadOnlySetProperty[E]): ReadOnlySetProperty[E]
Inherited from
PropertyIncludes
implicit def jfxReadOnlySetWrapper2sfx[E](p: ReadOnlySetWrapper[E]): ReadOnlySetWrapper[E]
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 Params
p

JavaFX ReadOnlyStringProperty

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 Params
p

JavaFX ReadOnlyStringWrapper

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from
PropertyIncludes
implicit def jfxRectangle2D2sfx(r: Rectangle2D): Rectangle2D

Converts a `javafx.geometry.Rectangle2D` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Rectangle2D` instance to its ScalaFX counterpart.

Value Params
r

JavaFX Rectangle2D

Returns

ScalaFX Rectangle2D

Inherited from
GeometryIncludes
implicit def jfxRectangle2sfx(r: Rectangle): Rectangle

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Rectangle.html Rectangle]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Rectangle.html Rectangle]] instance to its ScalaFX counterpart.

Value Params
r

JavaFX Rectangle

Returns

ScalaFX Rectangle

Inherited from
ShapeIncludes
implicit def jfxReflection2sfx(r: Reflection): Reflection

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Reflection.html Reflection]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Reflection.html Reflection]] instance to its ScalaFX counterpart.

Value Params
r

JavaFX Reflection

Returns

ScalaFX Reflection

Inherited from
EffectIncludes
implicit def jfxRegion2sfx(v: Region): Region

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Region.html Region]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Region.html Region]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX Region

Returns

ScalaFX Region

Inherited from
LayoutIncludes
implicit def jfxResizeFeatures2sfx[S](rf: ResizeFeatures[S]): ResizeFeatures[S]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableView.ResizeFeatures.html TableView.ResizeFeatures]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableView.ResizeFeatures.html TableView.ResizeFeatures]] instance to its ScalaFX counterpart.

Type Params
S

The type of the TableView.ResizeFeatures

Value Params
rf

JavaFX TableView.ResizeFeatures

Returns

ScalaFX TableView.ResizeFeatures

Inherited from
ControlIncludes
implicit def jfxResizeFeaturesBase2sfx[S](rf: ResizeFeaturesBase[S]): ResizeFeaturesBase[S]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ResizeFeaturesBase.html ResizeFeaturesBase]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ResizeFeaturesBase.html ResizeFeaturesBase]] instance to its ScalaFX counterpart.

Type Params
S

The type of the ResizeFeaturesBase

Value Params
rf

JavaFX ResizeFeaturesBase

Returns

ScalaFX ResizeFeaturesBase

Inherited from
ControlIncludes
implicit def jfxRotate2sfx(v: Rotate): Rotate

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Rotate.html Rotate]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Rotate.html Rotate]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX Rotate

Returns

ScalaFX Rotate

Inherited from
TransformIncludes
implicit def jfxRotateEvent2sfx(re: RotateEvent): RotateEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/RotateEvent.html RotateEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/RotateEvent.html RotateEvent]] instance to its ScalaFX counterpart.

Value Params
re

JavaFX RotateEvent

Returns

ScalaFX RotateEvent

Inherited from
InputIncludes
implicit def jfxRotateTransition2sfx(v: RotateTransition): RotateTransition

Generates a ScalaFX RotateTransition from its JavaFX counterparty.

Generates a ScalaFX RotateTransition from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxRowConstraints2sfx(v: RowConstraints): RowConstraints

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/RowConstraints.html RowConstraints]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/RowConstraints.html RowConstraints]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX RowConstraints

Returns

ScalaFX RowConstraints

Inherited from
LayoutIncludes
implicit def jfxSVGPath2sfx(s: SVGPath): SVGPath

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/SVGPath.html SVGPath]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/SVGPath.html SVGPath]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX SVGPath

Returns

ScalaFX SVGPath

Inherited from
ShapeIncludes
implicit def jfxScale2sfx(v: Scale): Scale

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Scale.html Scale]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Scale.html Scale]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX Scale

Returns

ScalaFX Scale

Inherited from
TransformIncludes
implicit def jfxScaleTransition2sfx(v: ScaleTransition): ScaleTransition

Generates a ScalaFX ScaleTransition from its JavaFX counterparty.

Generates a ScalaFX ScaleTransition from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxScatterChart2sfx[X, Y](b: ScatterChart[X, Y]): ScatterChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/ScatterChart.html ScatterChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/ScatterChart.html ScatterChart]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type

Y

Y Axis Type

Value Params
b

JavaFX ScatterChart

Returns

ScalaFX ScatterChart

Inherited from
ChartIncludes
implicit def jfxScene2sfx(v: Scene): Scene

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

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

Value Params
v

JavaFX Scene

Returns

ScalaFX Scene

Inherited from
LowerPriorityIncludes
implicit def jfxSceneAntialiasing2sfx(v: SceneAntialiasing): SceneAntialiasing

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

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

Value Params
v

JavaFX SceneAntialiasing

Returns

ScalaFX SceneAntialiasing

Throws
java.lang.IllegalArgumentException

if v has no known correspondence in ScalaFX.

Inherited from
LowerPriorityIncludes

Generates a SceneProperty from a JavaFX Scene.

Generates a SceneProperty from a JavaFX Scene.

Value Params
p

A ScalaFX scalafx.beans.property.ReadOnlyObjectProperty containing a JavaFX Scene.

Returns

ScalaFX SceneProperty

Inherited from
LowerPriorityIncludes
implicit def jfxScheduledService2sfxScheduledService[T](s: ScheduledService[T]): ScheduledService[T]

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

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

Value Params
s

JavaFX ScheduledService

Returns

ScalaFX ScheduledService

Inherited from
ConcurrentIncludes
implicit def jfxScreen2sfx(s: Screen): Screen

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Screen.html Screen]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Screen.html Screen]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX Screen

Returns

ScalaFX Screen

Inherited from
StageIncludes
implicit def jfxScrollBar2sfx(s: ScrollBar): ScrollBar

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ScrollBar.html ScrollBar]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ScrollBar.html ScrollBar]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX ScrollBar

Returns

ScalaFX ScrollBar

Inherited from
ControlIncludes
implicit def jfxScrollEvent2sfx(se: ScrollEvent): ScrollEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.html ScrollEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.html ScrollEvent]] instance to its ScalaFX counterpart.

Value Params
se

JavaFX ScrollEvent

Returns

ScalaFX ScrollEvent

Inherited from
InputIncludes

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.HorizontalTextScrollUnits.html ScrollEvent.HorizontalTextScrollUnits]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.HorizontalTextScrollUnits.html ScrollEvent.HorizontalTextScrollUnits]] instance to its ScalaFX counterpart.

Value Params
h

JavaFX ScrollEvent.HorizontalTextScrollUnits

Returns

ScalaFX ScrollEvent.HorizontalTextScrollUnits

Inherited from
InputIncludes
implicit def jfxScrollEventVerticalTextScrollUnits2sfx(v: VerticalTextScrollUnits): VerticalTextScrollUnits

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.VerticalTextScrollUnits.html ScrollEvent.VerticalTextScrollUnits]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.VerticalTextScrollUnits.html ScrollEvent.VerticalTextScrollUnits]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX ScrollEvent.VerticalTextScrollUnits

Returns

ScalaFX ScrollEvent.VerticalTextScrollUnits

Inherited from
InputIncludes
implicit def jfxScrollPane2sfx(s: ScrollPane): ScrollPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ScrollPane.html ScrollPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ScrollPane.html ScrollPane]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX ScrollPane

Returns

ScalaFX ScrollPane

Inherited from
ControlIncludes
implicit def jfxScrollPaneScrollBarPolicy2sfx(s: ScrollBarPolicy): ScrollBarPolicy

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ScrollPane.ScrollBarPolicy.html ScrollPane.ScrollBarPolicy]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ScrollPane.ScrollBarPolicy.html ScrollPane.ScrollBarPolicy]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX ScrollPane.ScrollBarPolicy

Returns

ScalaFX ScrollPane.ScrollBarPolicy

Inherited from
ControlIncludes
implicit def jfxScrollToEvent2sfx[T](ev: ScrollToEvent[T]): ScrollToEvent[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ScrollToEvent.html ScrollToEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ScrollToEvent.html ScrollToEvent]] instance to its ScalaFX counterpart.

Value Params
ev

JavaFX ScrollToEvent

Returns

ScalaFX ScrollToEvent

Inherited from
ControlIncludes
implicit def jfxSelectionMode2sfx(e: SelectionMode): SelectionMode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SelectionMode.html SelectionMode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SelectionMode.html SelectionMode]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX SelectionMode

Returns

ScalaFX SelectionMode

Inherited from
ControlIncludes
implicit def jfxSelectionModel2sfx[T](v: SelectionModel[T]): SelectionModel[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SelectionModel.html SelectionModel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SelectionModel.html SelectionModel]] instance to its ScalaFX counterpart.

Type Params
T

The type of the SelectionModel

Value Params
v

JavaFX SelectionModel

Returns

ScalaFX SelectionModel

Inherited from
ControlIncludes
implicit def jfxSeparator2sfx(s: Separator): Separator

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Separator.html Separator]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Separator.html Separator]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX Separator

Returns

ScalaFX Separator

Inherited from
ControlIncludes
implicit def jfxSeparatorMenuItem2sfx(s: SeparatorMenuItem): SeparatorMenuItem

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SeparatorMenuItem.html SeparatorMenuItem]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SeparatorMenuItem.html SeparatorMenuItem]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX SeparatorMenuItem

Returns

ScalaFX SeparatorMenuItem

Inherited from
ControlIncludes
implicit def jfxSepiaTone2sfx(st: SepiaTone): SepiaTone

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/SepiaTone.html SepiaTone]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/SepiaTone.html SepiaTone]] instance to its ScalaFX counterpart.

Value Params
st

JavaFX SepiaTone

Returns

ScalaFX SepiaTone

Inherited from
EffectIncludes
implicit def jfxSequentialTransition2sfx(v: SequentialTransition): SequentialTransition

Generates a ScalaFX SequentialTransition from its JavaFX counterparty.

Generates a ScalaFX SequentialTransition from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxService2sfxService[T](s: Service[T]): Service[T]

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

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

Value Params
s

JavaFX Service

Returns

ScalaFX Service

Inherited from
ConcurrentIncludes
implicit def jfxSetBinding2sfx[E](v: SetBinding[E]): SetBinding[E]
Inherited from
BindingIncludes
implicit def jfxSetExpression2sfx[E](v: SetExpression[E]): SetExpression[E]
Inherited from
BindingIncludes
implicit def jfxSetProperty2sfx[E](p: SetProperty[E]): SetProperty[E]
Inherited from
PropertyIncludes
implicit def jfxShadow2sfx(s: Shadow): Shadow

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Shadow.html Shadow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Shadow.html Shadow]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX Shadow

Returns

ScalaFX Shadow

Inherited from
EffectIncludes
implicit def jfxShape2sfx(s: Shape): Shape

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Shape.html Shape]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Shape.html Shape]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX Shape

Returns

ScalaFX Shape

Inherited from
ShapeIncludes
implicit def jfxShape3D2sfx(s: Shape3D): Shape3D

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Shape3D.html Shape3D]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Shape3D.html Shape3D]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX Shape3D

Returns

ScalaFX Shape3D

Inherited from
ShapeIncludes
implicit def jfxShear2sfx(v: Shear): Shear

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Shear.html Shear]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Shear.html Shear]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX Shear

Returns

ScalaFX Shear

Inherited from
TransformIncludes
implicit def jfxShortStringConverter2sfx(c: ShortStringConverter): ShortStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/ShortStringConverter.html ShortStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/ShortStringConverter.html ShortStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX ShortStringConverter

Returns

ScalaFX ShortStringConverter

Inherited from
ConverterIncludes
implicit def jfxSide2sfx(e: Side): Side

Converts a `javafx.geometry.Side` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Side` instance to its ScalaFX counterpart.

Value Params
e

JavaFX Side

Returns

ScalaFX Side

Inherited from
GeometryIncludes
implicit def jfxSingleSelectionModel2sfx[T](v: SingleSelectionModel[T]): SingleSelectionModel[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SingleSelectionModel.html SingleSelectionModel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SingleSelectionModel.html SingleSelectionModel]] instance to its ScalaFX counterpart.

Type Params
T

The type of the SingleSelectionModel

Value Params
v

JavaFX SingleSelectionModel

Returns

ScalaFX SingleSelectionModel

Inherited from
ControlIncludes
implicit def jfxSkin2sfxSkin[C <: Skinnable](s: Skin[C]): Skin[C]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Skin.html Skin]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Skin.html Skin]] instance to its ScalaFX counterpart.

Type Params
C

The type of the Skin

Value Params
s

JavaFX Skin

Returns

ScalaFX Skin

Inherited from
ControlIncludes
implicit def jfxSkinBase2sfx[C <: Control](sb: SkinBase[C]): SkinBase[C]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SkinBase.html SkinBase]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SkinBase.html SkinBase]] instance to its ScalaFX counterpart.

Value Params
sb

JavaFX SkinBase

Returns

ScalaFX SkinBase

Inherited from
ControlIncludes
implicit def jfxSkinnable2sfxSkinnable(s: Skinnable): Skinnable

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Skinnable.html Skinnable]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Skinnable.html Skinnable]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX Skinnable

Returns

ScalaFX Skinnable

Inherited from
ControlIncludes
implicit def jfxSlider2sfx(s: Slider): Slider

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Slider.html Slider]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Slider.html Slider]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX Slider

Returns

ScalaFX Slider

Inherited from
ControlIncludes
implicit def jfxSnapshotParameters2sfx(sp: SnapshotParameters): SnapshotParameters

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

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

Value Params
sp

JavaFX SnapshotParameters

Returns

ScalaFX SnapshotParameters

Inherited from
LowerPriorityIncludes
implicit def jfxSortEvent2sfx[C](se: SortEvent[C]): SortEvent[C]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SortEvent.html SortEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SortEvent.html SortEvent]] instance to its ScalaFX counterpart.

Type Params
C

The type of the SortEvent

Value Params
se

JavaFX SortEvent

Returns

ScalaFX SortEvent

Inherited from
ControlIncludes
implicit def jfxSortType2sfx(st: SortType): SortType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableColumn.SortType.html TableColumn.SortType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableColumn.SortType.html TableColumn.SortType]] instance to its ScalaFX counterpart.

Value Params
st

JavaFX TableColumn.SortType

Returns

ScalaFX TableColumn.SortType

Inherited from
ControlIncludes
implicit def jfxSphere2sfx(s: Sphere): Sphere
Inherited from
ShapeIncludes
implicit def jfxSpinner2sfx[T](ev: Spinner[T]): Spinner[T]
Inherited from
ControlIncludes
implicit def jfxSpinnerValueFactory2sfx[T](ev: SpinnerValueFactory[T]): SpinnerValueFactory[T]
Inherited from
ControlIncludes
implicit def jfxSplitMenuButton2sfx(h: SplitMenuButton): SplitMenuButton

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SplitMenuButton.html SplitMenuButton]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SplitMenuButton.html SplitMenuButton]] instance to its ScalaFX counterpart.

Value Params
h

JavaFX SplitMenuButton

Returns

ScalaFX SplitMenuButton

Inherited from
ControlIncludes
implicit def jfxSplitPane2sfx(s: SplitPane): SplitPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SplitPane.html SplitPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SplitPane.html SplitPane]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX SplitPane

Returns

ScalaFX SplitPane

Inherited from
ControlIncludes
implicit def jfxSplitPaneDivider2sfx(d: Divider): Divider

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SplitPane.Divider.html SplitPane.Divider]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SplitPane.Divider.html SplitPane.Divider]] instance to its ScalaFX counterpart.

Value Params
d

JavaFX SplitPane.Divider

Returns

ScalaFX SplitPane.Divider

Inherited from
ControlIncludes
implicit def jfxStackPane2sfx(v: StackPane): StackPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/StackPane.html StackPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/StackPane.html StackPane]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX StackPane

Returns

ScalaFX StackPane

Inherited from
LayoutIncludes
implicit def jfxStackedAreaChart2sfx[X, Y](b: StackedAreaChart[X, Y]): StackedAreaChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/StackedAreaChart.html StackedAreaChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/StackedAreaChart.html StackedAreaChart]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type

Y

Y Axis Type

Value Params
b

JavaFX StackedAreaChart

Returns

ScalaFX StackedAreaChart

Inherited from
ChartIncludes
implicit def jfxStackedBarChart2sfx[X, Y](b: StackedBarChart[X, Y]): StackedBarChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/StackedBarChart.html StackedBarChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/StackedBarChart.html StackedBarChart]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type

Y

Y Axis Type

Value Params
b

JavaFX StackedBarChart

Returns

ScalaFX StackedBarChart

Inherited from
ChartIncludes
implicit def jfxStage2sfx(s: Stage): Stage

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Stage.html Stage]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Stage.html Stage]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX Stage

Returns

ScalaFX Stage

Inherited from
StageIncludes
implicit def jfxStageStyle2sfx(e: StageStyle): StageStyle

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/StageStyle.html StageStyle]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/StageStyle.html StageStyle]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX StageStyle

Returns

ScalaFX StageStyle

Inherited from
StageIncludes
implicit def jfxStop2sfx(c: Stop): Stop

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Stop.html Stop]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Stop.html Stop]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX Stop

Returns

ScalaFX Stop

Inherited from
PaintIncludes
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 Params
sb

JavaFX StringBinding

Returns

ScalaFX StringBinding

Inherited from
BindingIncludes
implicit def jfxStringConverter2sfx[T](c: StringConverter[T]): StringConverter[T]

Converts a `javafx.util.StringConverter` instance to its ScalaFX counterpart.

Converts a `javafx.util.StringConverter` instance to its ScalaFX counterpart.

Type Params
T

StringConverter Type

Value Params
c

JavaFX StringConverter

Returns

ScalaFX StringConverter

Inherited from
UtilIncludes
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 Params
se

JavaFX StringExpression

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 Params
p

JavaFX StringProperty

Returns

ScalaFX StringProperty

Inherited from
PropertyIncludes
implicit def jfxStrokeLineCap2sfx(e: StrokeLineCap): StrokeLineCap

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeLineCap.html StrokeLineCap]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeLineCap.html StrokeLineCap]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX StrokeLineCap

Returns

ScalaFX StrokeLineCap

Inherited from
ShapeIncludes
implicit def jfxStrokeLineJoin2sfx(e: StrokeLineJoin): StrokeLineJoin

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeLineJoin.html StrokeLineJoin]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeLineJoin.html StrokeLineJoin]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX StrokeLineJoin

Returns

ScalaFX StrokeLineJoin

Inherited from
ShapeIncludes
implicit def jfxStrokeTransition2sfx(v: StrokeTransition): StrokeTransition

Generates a ScalaFX StrokeTransition from its JavaFX counterparty.

Generates a ScalaFX StrokeTransition from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxStrokeType2sfx(e: StrokeType): StrokeType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeType.html StrokeType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeType.html StrokeType]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX StrokeType

Returns

ScalaFX StrokeType

Inherited from
ShapeIncludes
implicit def jfxStyleConverter2sfx[F, T](sc: StyleConverter[F, T]): StyleConverter[F, T]

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

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

Value Params
sc

JavaFX StyleConverter

Returns

ScalaFX StyleConverter

Inherited from
CssIncludes
implicit def jfxStyleOrigin2sfx(o: StyleOrigin): StyleOrigin

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

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

Value Params
o

JavaFX StyleOrigin

Returns

ScalaFX StyleOrigin

Inherited from
CssIncludes
implicit def jfxStyleable2sfx(s: Styleable): Styleable

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

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

Value Params
s

JavaFX Styleable

Returns

ScalaFX Styleable

Inherited from
CssIncludes
implicit def jfxSubScene2sfx(v: SubScene): SubScene

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

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

Value Params
v

JavaFX SubScene

Returns

ScalaFX SubScene

Inherited from
LowerPriorityIncludes
implicit def jfxSubtitleTrack2sfx(st: SubtitleTrack): SubtitleTrack

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/SubtitleTrack.html SubtitleTrack]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/SubtitleTrack.html SubtitleTrack]] instance to its ScalaFX counterpart.

Value Params
st

JavaFX SubtitleTrack

Returns

ScalaFX SubtitleTrack

Inherited from
MediaIncludes
implicit def jfxSwingNode2sfx(n: SwingNode): SwingNode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/embed/swing/SwingNode$.html SwingNode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/embed/swing/SwingNode$.html SwingNode]] instance to its ScalaFX counterpart.

Value Params
n

JavaFX SwingNode

Returns

ScalaFX SwingNode

Inherited from
SwingIncludes
implicit def jfxSwipeEvent2sfx(se: SwipeEvent): SwipeEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/SwipeEvent.html SwipeEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/SwipeEvent.html SwipeEvent]] instance to its ScalaFX counterpart.

Value Params
se

JavaFX SwipeEvent

Returns

ScalaFX SwipeEvent

Inherited from
InputIncludes
implicit def jfxTab2sfx(v: Tab): Tab

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Tab.html Tab]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Tab.html Tab]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX Tab

Returns

ScalaFX Tab

Inherited from
ControlIncludes
implicit def jfxTabClosingPolicy2sfx(v: TabClosingPolicy): TabClosingPolicy

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TabPane.TabClosingPolicy.html TabPane.TabClosingPolicy]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TabPane.TabClosingPolicy.html TabPane.TabClosingPolicy]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX TabPane.TabClosingPolicy

Returns

ScalaFX TabPane.TabClosingPolicy

Inherited from
ControlIncludes
implicit def jfxTabPane2sfx(v: TabPane): TabPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TabPane.html TabPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TabPane.html TabPane]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX TabPane

Returns

ScalaFX TabPane

Inherited from
ControlIncludes
implicit def jfxTableCell2sfx[S, T](tc: TableCell[S, T]): TableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableCell.html TableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableCell.html TableCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TableCell

Value Params
tc

JavaFX TableCell

Returns

ScalaFX TableCell

Inherited from
ControlIncludes
implicit def jfxTableColumn2sfx[S, T](tc: TableColumn[S, T]): TableColumn[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableColumn.html TableColumn]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableColumn.html TableColumn]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TableColumn

Value Params
tc

JavaFX TableColumn

Returns

ScalaFX TableColumn

Inherited from
ControlIncludes
implicit def jfxTableColumnBase2sfx[S, T](tbcb: TableColumnBase[S, T]): TableColumnBase[S, T]
Inherited from
ControlIncludes
implicit def jfxTableFocusModel2sfx[T, TC <: TableColumnBase[T, _]](tfm: TableFocusModel[T, TC]): TableFocusModel[T, TC]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableFocusModel.html TableFocusModel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableFocusModel.html TableFocusModel]] instance to its ScalaFX counterpart.

Type Params
T

The type of the underlying data model for the UI control.

TC

The concrete subclass of scalafx.scene.control.TableColumnBase that is used by the underlying UI control (e.g. scalafx.scene.control.TableColumn or TreeTableColumn).

Value Params
tfm

JavaFX TableFocusModel

Returns

ScalaFX TableFocusModel

Since

8.0

Inherited from
ControlIncludes
implicit def jfxTablePosition2sfx[S, T](tp: TablePosition[S, T]): TablePosition[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TablePosition.html TablePosition]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TablePosition.html TablePosition]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TablePosition

Value Params
tp

JavaFX TablePosition

Returns

ScalaFX TablePosition

Inherited from
ControlIncludes
implicit def jfxTablePositionBase2sfx[TC <: TableColumnBase[_, _]](tpb: TablePositionBase[TC]): TablePositionBase[TC]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TablePositionBase.html TablePositionBase]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TablePositionBase.html TablePositionBase]] instance to its ScalaFX counterpart.

Type Params
TC

The type of the TablePositionBase

Value Params
tpb

JavaFX TablePositionBase

Returns

ScalaFX TablePositionBase

Since

8.0

Inherited from
ControlIncludes
implicit def jfxTableRow2sfx[T](tr: TableRow[T]): TableRow[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableRow.html TableRow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableRow.html TableRow]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TableRow

Value Params
tr

JavaFX TableRow

Returns

ScalaFX TableRow

Inherited from
ControlIncludes
implicit def jfxTableSelectionModel2sfx[T](tsm: TableSelectionModel[T]): TableSelectionModel[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableSelectionModel.html TableSelectionModel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableSelectionModel.html TableSelectionModel]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TableSelectionModel

Value Params
tsm

JavaFX TableSelectionModel

Returns

ScalaFX TableSelectionModel

Inherited from
ControlIncludes
implicit def jfxTableView2sfx[S](tv: TableView[S]): TableView[S]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableView.html TableView]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableView.html TableView]] instance to its ScalaFX counterpart.

Type Params
S

The type of the TableView

Value Params
tv

JavaFX TableView

Returns

ScalaFX TableView

Inherited from
ControlIncludes
implicit def jfxTableViewFocusModel2sfx[S](tvfm: TableViewFocusModel[S]): TableViewFocusModel[S]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableView.TableViewFocusModel.html TableView.TableViewFocusModel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableView.TableViewFocusModel.html TableView.TableViewFocusModel]] instance to its ScalaFX counterpart.

Type Params
S

The type of the TableView.TableViewFocusModel

Value Params
tvfm

JavaFX TableView.TableViewFocusModel

Returns

ScalaFX TableView.TableViewFocusModel

Inherited from
ControlIncludes
implicit def jfxTableViewSelectionModel2sfx[S](tvsm: TableViewSelectionModel[S]): TableViewSelectionModel[S]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableView.TableViewSelectionModel.html TableView.TableViewSelectionModel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableView.TableViewSelectionModel.html TableView.TableViewSelectionModel]] instance to its ScalaFX counterpart.

Type Params
S

The type of the TableView.TableViewSelectionModel

Value Params
tvsm

JavaFX TableView.TableViewSelectionModel

Returns

ScalaFX TableView.TableViewSelectionModel

Inherited from
ControlIncludes
implicit def jfxTask2sfxTask[T](t: Task[T]): Task[T]

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

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

Value Params
t

JavaFX Task

Returns

ScalaFX Task

Inherited from
ConcurrentIncludes
implicit def jfxText2sfxText(t: Text): Text

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/Text.html Text]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/Text.html Text]] instance to its ScalaFX counterpart.

Value Params
t

JavaFX Text

Returns

ScalaFX Text

Inherited from
TextIncludes
implicit def jfxTextAlignment2sfx(e: TextAlignment): TextAlignment

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/TextAlignment.html TextAlignment]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/TextAlignment.html TextAlignment]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX TextAlignment

Returns

ScalaFX TextAlignment

Inherited from
TextIncludes
implicit def jfxTextArea2sfx(t: TextArea): TextArea

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TextArea.html TextArea]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TextArea.html TextArea]] instance to its ScalaFX counterpart.

Value Params
t

JavaFX TextArea

Returns

ScalaFX TextArea

Inherited from
ControlIncludes
implicit def jfxTextBoundsType2sfx(e: TextBoundsType): TextBoundsType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/TextBoundsType.html TextBoundsType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/TextBoundsType.html TextBoundsType]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX TextBoundsType

Returns

ScalaFX TextBoundsType

Inherited from
TextIncludes
implicit def jfxTextField2sfx(v: TextField): TextField

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TextField.html TextField]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TextField.html TextField]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX TextField

Returns

ScalaFX TextField

Inherited from
ControlIncludes
implicit def jfxTextFieldListCell2sfx[T](cell: TextFieldListCell[T]): TextFieldListCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldListCell.html TextFieldListCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldListCell.html TextFieldListCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the elements contained within the Element

Value Params
cell

JavaFX TextFieldListCell

Returns

ScalaFX TextFieldListCell

Inherited from
CellIncludes

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TextField.html TextField]] to a TextFieldProperty.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TextField.html TextField]] to a TextFieldProperty.

Value Params
p

A ReadOnlyObjectProperty containing a TextField

Returns

a new TextFieldProperty

Inherited from
ControlIncludes
implicit def jfxTextFieldTableCell2sfx[S, T](cell: TextFieldTableCell[S, T]): TextFieldTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTableCell.html TextFieldTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTableCell.html TextFieldTableCell]] instance to its ScalaFX counterpart.

Type Params
S

The type of the elements contained ...

T

The type of the elements contained within the Element

Value Params
cell

JavaFX TextFieldTableCell

Returns

ScalaFX TextFieldTableCell

Inherited from
CellIncludes
implicit def jfxTextFieldTreeCell2sfx[T](cell: TextFieldTreeCell[T]): TextFieldTreeCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTreeCell.html TextFieldTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTreeCell.html TextFieldTreeCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the elements contained within the Element

Value Params
cell

JavaFX TextFieldTreeCell

Returns

ScalaFX TextFieldTreeCell

Inherited from
CellIncludes
implicit def jfxTextFieldTreeTableCell2sfx[S, T](cell: TextFieldTreeTableCell[S, T]): TextFieldTreeTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTreeTableCell.html TextFieldTreeTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTreeTableCell.html TextFieldTreeTableCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the elements contained within the Element

Value Params
cell

JavaFX TextFieldTreeTableCell

Returns

ScalaFX TextFieldTreeTableCell

Inherited from
CellIncludes
implicit def jfxTextFlow2sfx(tf: TextFlow): TextFlow
Inherited from
TextIncludes
implicit def jfxTextFormatter2sfx[V](t: TextFormatter[V]): TextFormatter[V]
Inherited from
ControlIncludes
implicit def jfxTextFormatterChange2sfx[V](t: Change): Change
Inherited from
ControlIncludes
implicit def jfxTextInputControl2sfx(t: TextInputControl): TextInputControl

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TextInputControl.html TextInputControl]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TextInputControl.html TextInputControl]] instance to its ScalaFX counterpart.

Value Params
t

JavaFX TextInputControl

Returns

ScalaFX TextInputControl

Inherited from
ControlIncludes
implicit def jfxTextInputDialog2sfx(v: TextInputDialog): TextInputDialog
Inherited from
ControlIncludes
implicit def jfxTilePane2sfx(v: TilePane): TilePane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/TilePane.html TilePane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/TilePane.html TilePane]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX TilePane

Returns

ScalaFX TilePane

Inherited from
LayoutIncludes
implicit def jfxTimeStringConverter2sfx(c: TimeStringConverter): TimeStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/TimeStringConverter.html TimeStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/TimeStringConverter.html TimeStringConverter]] instance to its ScalaFX counterpart.

Value Params
c

JavaFX TimeStringConverter

Returns

ScalaFX TimeStringConverter

Inherited from
ConverterIncludes
implicit def jfxTimeline2sfx(v: Timeline): Timeline

Generates a ScalaFX Timeline from its JavaFX counterparty.

Generates a ScalaFX Timeline from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxTitledPane2sfx(t: TitledPane): TitledPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TitledPane.html TitledPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TitledPane.html TitledPane]] instance to its ScalaFX counterpart.

Value Params
t

JavaFX TitledPane

Returns

ScalaFX TitledPane

Inherited from
ControlIncludes
implicit def jfxToggle2sfx(t: Toggle): Toggle

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Toggle.html Toggle]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Toggle.html Toggle]] instance to its ScalaFX counterpart.

Value Params
t

JavaFX Toggle

Returns

ScalaFX Toggle

Inherited from
ControlIncludes
implicit def jfxToggleButton2sfx(tb: ToggleButton): ToggleButton

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ToggleButton.html ToggleButton]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ToggleButton.html ToggleButton]] instance to its ScalaFX counterpart.

Value Params
tb

JavaFX ToggleButton

Returns

ScalaFX ToggleButton

Inherited from
ControlIncludes
implicit def jfxToggleGroup2sfx(tg: ToggleGroup): ToggleGroup

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ToggleGroup.html ToggleGroup]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ToggleGroup.html ToggleGroup]] instance to its ScalaFX counterpart.

Value Params
tg

JavaFX ToggleGroup

Returns

ScalaFX ToggleGroup

Inherited from
ControlIncludes
implicit def jfxToolBar2sfx(t: ToolBar): ToolBar

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ToolBar.html ToolBar]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ToolBar.html ToolBar]] instance to its ScalaFX counterpart.

Value Params
t

JavaFX ToolBar

Returns

ScalaFX ToolBar

Inherited from
ControlIncludes
implicit def jfxTooltip2sfx(t: Tooltip): Tooltip

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Tooltip.html Tooltip]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Tooltip.html Tooltip]] instance to its ScalaFX counterpart.

Value Params
t

JavaFX Tooltip

Returns

ScalaFX Tooltip

Inherited from
ControlIncludes
implicit def jfxTouchEvent2sfx(te: TouchEvent): TouchEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchEvent.html TouchEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchEvent.html TouchEvent]] instance to its ScalaFX counterpart.

Value Params
te

JavaFX TouchEvent

Returns

ScalaFX TouchEvent

Inherited from
InputIncludes
implicit def jfxTouchPoint2sfx(tp: TouchPoint): TouchPoint

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchPoint.html TouchPoint]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchPoint.html TouchPoint]] instance to its ScalaFX counterpart.

Value Params
tp

JavaFX TouchPoint

Returns

ScalaFX TouchPoint

Inherited from
InputIncludes
implicit def jfxTouchPointState2sfx(s: State): State

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchPoint.State.html TouchPoint.State]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchPoint.State.html TouchPoint.State]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX TouchPoint.State

Returns

ScalaFX TouchPoint.State

Inherited from
InputIncludes
implicit def jfxTrack2sfx(t: Track): Track

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/Track.html Track]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/Track.html Track]] instance to its ScalaFX counterpart.

Value Params
t

JavaFX Track

Returns

ScalaFX Track

Inherited from
MediaIncludes
implicit def jfxTransferMode2sfx(e: TransferMode): TransferMode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TransferMode.html TransferMode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TransferMode.html TransferMode]] instance to its ScalaFX counterpart.

Value Params
e

JavaFX TransferMode

Returns

ScalaFX TransferMode

Inherited from
InputIncludes
implicit def jfxTransform2sfx(v: Transform): Transform

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Transform.html Transform]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Transform.html Transform]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX Transform

Returns

ScalaFX Transform

Inherited from
TransformIncludes
implicit def jfxTransformChangedEvent2sfx(v: TransformChangedEvent): TransformChangedEvent
Inherited from
TransformIncludes
implicit def jfxTransition2sfx(v: Transition): Transition

Generates a ScalaFX Transition from its JavaFX counterparty.

Generates a ScalaFX Transition from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxTranslate2sfx(v: Translate): Translate

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Translate.html Translate]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Translate.html Translate]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX Translate

Returns

ScalaFX Translate

Inherited from
TransformIncludes
implicit def jfxTranslateTransition2sfx(v: TranslateTransition): TranslateTransition

Generates a ScalaFX TranslateTransition from its JavaFX counterparty.

Generates a ScalaFX TranslateTransition from its JavaFX counterparty.

Inherited from
AnimationIncludes
implicit def jfxTreeCell2sfx[T](t: TreeCell[T]): TreeCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeCell.html TreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeCell.html TreeCell]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TreeCell

Value Params
t

JavaFX TreeCell

Returns

ScalaFX TreeCell

Inherited from
ControlIncludes
implicit def jfxTreeCellDataFeatures2sfx[S, T](a: CellDataFeatures[S, T]): CellDataFeatures[S, T]
Inherited from
ControlIncludes
implicit def jfxTreeItem2sfx[T](t: TreeItem[T]): TreeItem[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeItem.html TreeItem]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeItem.html TreeItem]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TreeItem

Value Params
t

JavaFX TreeItem

Returns

ScalaFX TreeItem

Inherited from
ControlIncludes
implicit def jfxTreeModificationEvent2sfx[T](tmi: TreeModificationEvent[T]): TreeModificationEvent[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeItem.TreeModificationEvent.html TreeItem.TreeModificationEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeItem.TreeModificationEvent.html TreeItem.TreeModificationEvent]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TreeItem.TreeModificationEvent

Value Params
tmi

JavaFX TreeItem.TreeModificationEvent

Returns

ScalaFX TreeItem.TreeModificationEvent

Inherited from
ControlIncludes
implicit def jfxTreeSortMode2sfx(tsm: TreeSortMode): TreeSortMode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeSortMode.html TreeSortMode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeSortMode.html TreeSortMode]] instance to its ScalaFX counterpart.

Value Params
tsm

JavaFX TreeSortMode

Returns

ScalaFX TreeSortMode

Since

8.0

Inherited from
ControlIncludes
implicit def jfxTreeTableCell2sfx[S, T](ttc: TreeTableCell[S, T]): TreeTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableCell.html TreeTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableCell.html TreeTableCell]] instance to its ScalaFX counterpart.

Type Params
S

1st The type of the TreeTableCell

T

2st The type of the TreeTableCell

Value Params
ttc

JavaFX TreeTableCell

Returns

ScalaFX TreeTableCell

Since

8.0

Inherited from
ControlIncludes
implicit def jfxTreeTableColumn2sfx[S, T](a: TreeTableColumn[S, T]): TreeTableColumn[S, T]
Inherited from
ControlIncludes
implicit def jfxTreeTablePosition2sfx[S, T](ttp: TreeTablePosition[S, T]): TreeTablePosition[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTablePosition.html TreeTablePosition]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTablePosition.html TreeTablePosition]] instance to its ScalaFX counterpart.

Type Params
S

The type of the TreeItem instances contained within the TreeTableView.

T

The type of the items contained within the TreeTableColumn.

Value Params
ttp

JavaFX TreeTablePosition

Returns

ScalaFX TreeTablePosition

Inherited from
ControlIncludes
implicit def jfxTreeTableRow2sfx[T](ttr: TreeTableRow[T]): TreeTableRow[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableRow.html TreeTableRow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableRow.html TreeTableRow]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TreeTableRow

Value Params
ttr

JavaFX TreeTableRow

Returns

ScalaFX TreeTableRow

Since

8.0

Inherited from
ControlIncludes
implicit def jfxTreeTableView2sfx[S](a: TreeTableView[S]): TreeTableView[S]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.html TreeTableView]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.html TreeTableView]] instance to its ScalaFX counterpart.

Type Params
S

The type of the TreeItem instances contained within the TreeTableView.

Value Params
a

JavaFX TreeTableView

Returns

ScalaFX TreeTableView

Since

8.0

Inherited from
ControlIncludes
implicit def jfxTreeTableViewEditEvent2sfx[T](t: EditEvent[T]): EditEvent[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.html TreeTableView]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.html TreeTableView]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TreeItem instances contained within the TreeTableView.

Value Params
t

JavaFX TreeTableView

Returns

ScalaFX TreeTableView

Since

8.0

Inherited from
ControlIncludes
implicit def jfxTreeTableViewFocusModel2sfx[S](ttvfm: TreeTableViewFocusModel[S]): TreeTableViewFocusModel[S]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.TreeTableViewFocusModel.html TreeTableView.TreeTableViewFocusModel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.TreeTableViewFocusModel.html TreeTableView.TreeTableViewFocusModel]] instance to its ScalaFX counterpart.

Type Params
S

The type of the TreeItem instances contained within the TreeTableView.

Value Params
ttvfm

JavaFX TreeTableView.TreeTableViewFocusModel

Returns

ScalaFX TreeTableView.TreeTableViewFocusModel

Inherited from
ControlIncludes
implicit def jfxTreeTableViewResizeFeatures2sfx[S](rf: ResizeFeatures[S]): ResizeFeatures[S]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.EditEvent.html TreeTableView.EditEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.EditEvent.html TreeTableView.EditEvent]] instance to its ScalaFX counterpart.

Type Params
S

The type of the TreeItem instances contained within the TreeTableView.

Value Params
rf

JavaFX TreeTableView.EditEvent

Returns

ScalaFX $TVVE

Inherited from
ControlIncludes
implicit def jfxTreeTableViewSelectionModel2sfx[S](ttvsm: TreeTableViewSelectionModel[S]): TreeTableViewSelectionModel[S]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.TreeTableViewSelectionModel.html TreeTableView.TreeTableViewSelectionModel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.TreeTableViewSelectionModel.html TreeTableView.TreeTableViewSelectionModel]] instance to its ScalaFX counterpart.

Type Params
S

The type of the TreeItem instances contained within the TreeTableView.

Value Params
ttvsm

JavaFX TreeTableView.TreeTableViewSelectionModel

Returns

ScalaFX TreeTableView.TreeTableViewSelectionModel

Inherited from
ControlIncludes
implicit def jfxTreeView2sfx[T](t: TreeView[T]): TreeView[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeView.html TreeView]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeView.html TreeView]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TreeView

Value Params
t

JavaFX TreeView

Returns

ScalaFX TreeView

Inherited from
ControlIncludes
implicit def jfxTreeViewEditEvent2sfx[T](t: EditEvent[T]): EditEvent[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeView.EditEvent.html TreeView.EditEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeView.EditEvent.html TreeView.EditEvent]] instance to its ScalaFX counterpart.

Type Params
T

The type of the TreeView.EditEvent

Value Params
t

JavaFX TreeView.EditEvent

Returns

ScalaFX TreeView.EditEvent

Inherited from
ControlIncludes
implicit def jfxTriangleMesh2sfx(tm: TriangleMesh): TriangleMesh
Inherited from
ShapeIncludes
implicit def jfxType2sfx(t: Type): Type

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelFormat.Type.html PixelFormat.Type]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelFormat.Type.html PixelFormat.Type]] instance to its ScalaFX counterpart.

Value Params
t

JavaFX PixelFormat.Type

Returns

ScalaFX PixelFormat.Type

Inherited from
ImageIncludes
implicit def jfxVBox2sfx(v: VBox): VBox

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/VBox.html VBox]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/VBox.html VBox]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX VBox

Returns

ScalaFX VBox

Inherited from
LayoutIncludes
implicit def jfxVLineTo2sfx(v: VLineTo): VLineTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/VLineTo.html VLineTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/VLineTo.html VLineTo]] instance to its ScalaFX counterpart.

Value Params
v

JavaFX VLineTo

Returns

ScalaFX VLineTo

Inherited from
ShapeIncludes
implicit def jfxVPos2sfx(v: VPos): VPos

Converts a `javafx.geometry.VPos` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.VPos` instance to its ScalaFX counterpart.

Value Params
v

JavaFX VPos

Returns

ScalaFX VPos

Inherited from
GeometryIncludes
implicit def jfxValueAxis2sfx[X <: Number](a: ValueAxis[X]): ValueAxis[X]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/ValueAxis.html ValueAxis]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/ValueAxis.html ValueAxis]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type, derivated from Number.

Value Params
a

JavaFX ValueAxis

Returns

ScalaFX ValueAxis

Inherited from
ChartIncludes
implicit def jfxVertexFormat2sfx(v: VertexFormat): VertexFormat
Inherited from
ShapeIncludes
implicit def jfxVerticalDirection2sfx(h: VerticalDirection): VerticalDirection

Converts a `javafx.geometry.VerticalDirection` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.VerticalDirection` instance to its ScalaFX counterpart.

Value Params
h

JavaFX VerticalDirection

Returns

ScalaFX VerticalDirection

Inherited from
GeometryIncludes
implicit def jfxVideoTrack2sfx(vt: VideoTrack): VideoTrack

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/VideoTrack.html VideoTrack]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/VideoTrack.html VideoTrack]] instance to its ScalaFX counterpart.

Value Params
vt

JavaFX VideoTrack

Returns

ScalaFX VideoTrack

Inherited from
MediaIncludes
implicit def jfxWeakEventHandler2sfx[T <: Event](weh: WeakEventHandler[T]): WeakEventHandler[T]

Converts a `javafx.event.WeakEventHandler` instance to its ScalaFX counterpart.

Converts a `javafx.event.WeakEventHandler` instance to its ScalaFX counterpart.

Type Params
T

Event Type

Value Params
weh

JavaFX WeakEventHandler

Returns

ScalaFX WeakEventHandler

Since

8.0

Inherited from
EventIncludes
implicit def jfxWebEngine2sfx(we: WebEngine): WebEngine

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebEngine.html WebEngine]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebEngine.html WebEngine]] instance to its ScalaFX counterpart.

Value Params
we

JavaFX WebEngine

Returns

ScalaFX WebEngine

Inherited from
WebIncludes
implicit def jfxWebErrorEvent2sfx(wr: WebErrorEvent): WebErrorEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebErrorEvent.html WebErrorEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebErrorEvent.html WebErrorEvent]] instance to its ScalaFX counterpart.

Value Params
wr

JavaFX WebErrorEvent

Returns

ScalaFX WebErrorEvent

Inherited from
WebIncludes
implicit def jfxWebEvent2sfx[T](we: WebEvent[T]): WebEvent[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebEvent.html WebEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebEvent.html WebEvent]] instance to its ScalaFX counterpart.

Value Params
we

JavaFX WebEvent

Returns

ScalaFX WebEvent

Inherited from
WebIncludes
implicit def jfxWebView2sfx(wv: WebView): WebView

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebView.html WebView]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebView.html WebView]] instance to its ScalaFX counterpart.

Value Params
wv

JavaFX WebView

Returns

ScalaFX WebView

Inherited from
WebIncludes
implicit def jfxWindow2sfx(w: Window): Window

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Window.html Window]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Window.html Window]] instance to its ScalaFX counterpart.

Value Params
w

JavaFX Window

Returns

ScalaFX Window

Inherited from
StageIncludes
implicit def jfxWindowEvent2sfx(we: WindowEvent): WindowEvent

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/WindowEvent.html WindowEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/WindowEvent.html WindowEvent]] instance to its ScalaFX counterpart.

Value Params
we

JavaFX WindowEvent

Returns

ScalaFX WindowEvent

Inherited from
StageIncludes
implicit def jfxWorker2sfxWorker[T](w: Worker[T]): Worker[T]

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

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

Value Params
w

JavaFX Worker

Returns

ScalaFX Worker

Inherited from
ConcurrentIncludes
implicit def jfxWorkerState2sfxWorkerState(s: State): State

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/Worker.State.html Worker.State]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/Worker.State.html Worker.State]] instance to its ScalaFX counterpart.

Value Params
s

JavaFX Worker.State

Returns

ScalaFX Worker.State

Inherited from
ConcurrentIncludes

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

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

Value Params
w

JavaFX WorkerStateEvent

Returns

ScalaFX WorkerStateEvent

Inherited from
ConcurrentIncludes
implicit def jfxWritableImage2sfx(wi: WritableImage): WritableImage

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/WritableImage.html WritableImage]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/WritableImage.html WritableImage]] instance to its ScalaFX counterpart.

Value Params
wi

JavaFX WritableImage

Returns

ScalaFX WritableImage

Inherited from
ImageIncludes
implicit def jfxWritablePixelFormat2sfx[B <: Buffer](pf: WritablePixelFormat[B]): WritablePixelFormat[B]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/WritablePixelFormat.html WritablePixelFormat]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/WritablePixelFormat.html WritablePixelFormat]] instance to its ScalaFX counterpart.

Value Params
pf

JavaFX WritablePixelFormat

Returns

ScalaFX WritablePixelFormat

Inherited from
ImageIncludes
implicit def jfxXYChart2sfx[X, Y](c: XYChart[X, Y]): XYChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.html XYChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.html XYChart]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type

Y

Y Axis Type

Value Params
c

JavaFX XYChart

Returns

ScalaFX XYChart

Inherited from
ChartIncludes
implicit def jfxXYChartData2sfx[X, Y](b: Data[X, Y]): Data[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.Data.html XYChart.Data]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.Data.html XYChart.Data]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type

Y

Y Axis Type

Value Params
b

JavaFX XYChart.Data

Returns

ScalaFX XYChart.Data

Inherited from
ChartIncludes
implicit def jfxXYChartSeries2sfx[X, Y](b: Series[X, Y]): Series[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.Series.html XYChart.Series]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.Series.html XYChart.Series]] instance to its ScalaFX counterpart.

Type Params
X

X Axis Type

Y

Y Axis Type

Value Params
b

JavaFX XYChart.Series

Returns

ScalaFX XYChart.Series

Inherited from
ChartIncludes
implicit def jfxZoomEvent2sfx(ze: ZoomEvent): ZoomEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ZoomEvent.html ZoomEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ZoomEvent.html ZoomEvent]] instance to its ScalaFX counterpart.

Value Params
ze

JavaFX ZoomEvent

Returns

ScalaFX ZoomEvent

Inherited from
InputIncludes
implicit def lilteredList2FilteredBuffer[T](ol: FilteredList[T]): FilteredBuffer[T]
implicit def long2LongBinding(i: Long): LongBinding

Converts a Long to a JavaFX LongBinding

Converts a Long to a JavaFX LongBinding

Value Params
i

Long to generate a new LongBinding

Returns

a new LongBinding generated from the Long.

Inherited from
BindingIncludes
implicit def observableList2ObservableBuffer[T](ol: ObservableList[T]): ObservableBuffer[T]
Type Params
T

List Type

Value Params
ol

JavaFX ObservableList

Returns

ScalaFX ObservableBuffer

Inherited from
CollectionIncludes
implicit def sfxFunction2jfxInterpolatable[T](f: (T, Double) => T): Interpolatable[T]

Converts a scala.Function2 to a `Interpolatable` Implementation.

Converts a scala.Function2 to a `Interpolatable` Implementation.

Type Params
T

Type of Function

Value Params
f

Function that receives a instance of T and a Double (between 0.0 and 1.0) and returns a T Instance.

Returns

A new instance of `Interpolatable` which interpolate method calls f function.

Inherited from
AnimationIncludes
implicit def sfxObjectPropertyWithSFXDelegate2jfxObjectProperty[D <: Object, S <: SFXDelegate[D]](obj: ObjectProperty[S]): ObjectProperty[D]
Type Params
D

Type wrapped by SFXDelegate

S

A SFXDelegate subtype that wraps D.

Value Params
obj

ObjectProperty that a wraps Scala's SFXDelegate

Returns

A new Java's ObjectProperty

Inherited from
DelegateIncludes
implicit def sfxReadOnlyObjectWrapperWithSFXDelegate2jfxReadOnlyObjectWrapper[D <: Object, S <: SFXDelegate[D]](obj: ReadOnlyObjectWrapper[S]): ReadOnlyObjectWrapper[D]
Type Params
D

Type wrapped by SFXDelegate

S

A SFXDelegate subtype that wraps D.

Value Params
obj

ObjectProperty that a wraps Scala's SFXDelegate

Returns

A new Java's ObjectProperty

Inherited from
DelegateIncludes
implicit def sortedList2SortedBuffer[T](ol: SortedList[T]): SortedBuffer[T]
implicit def string2jfxColor(s: String): Color

Converts an HTML or CSS attribute string to a JavaFX Color. See JavaFX's Color.web() for more details.

Converts an HTML or CSS attribute string to a JavaFX Color. See JavaFX's Color.web() for more details.

Value Params
s

The name or numeric representation of the color in one of the supported formats

Returns

JavaFX Color correspondent to argument

Inherited from
PaintIncludes
implicit def string2sfxColor(s: String): Color

Converts an HTML or CSS attribute string to a ScalaFX Color. See JavaFX's Color.web() for more details.

Converts an HTML or CSS attribute string to a ScalaFX Color. See JavaFX's Color.web() for more details.

Value Params
s

The name or numeric representation of the color in one of the supported formats

Returns

ScalaFX Color correspondent to argument

Inherited from
PaintIncludes
implicit def tuple22jfxPair[K, V](t: (K, V)): Pair[K, V]

Convert a Scala Tuple2 to a JavaFX Pair.

Convert a Scala Tuple2 to a JavaFX Pair.

Type Params
K

Key Type

V

Value Type

Value Params
t

A Scala Tuple2

Returns

A JavaFX Pair generated from Scala Tuple2.

Inherited from
UtilIncludes
implicit def tuple32JfxColor(tuple: (Int, Int, Int)): Color

Converts a tuple of 3 Integers to a JavaFX Color.

Converts a tuple of 3 Integers to a JavaFX Color.

Value Params
tuple

A tuple of 3 Integers (all of them must be lesser than 256) correspondent respectively to red, green and blue components of desired Color

Returns

Color correspondent to Tuple.

Inherited from
PaintIncludes
implicit def tuple32SfxColor(tuple: (Int, Int, Int)): Color

Converts a tuple of 3 Integers to a ScalaFX Color.

Converts a tuple of 3 Integers to a ScalaFX Color.

Value Params
tuple

A tuple of 3 Integers (all of them must be lesser than 256) correspondent respectively to red, green and blue components of desired Color

Returns

Color correspondent to Tuple.

Inherited from
PaintIncludes
implicit def tuple42JfxColor(tuple: (Int, Int, Int, Double)): Color

Converts a tuple of 3 Integers and a double to a JavaFX Color.

Converts a tuple of 3 Integers and a double to a JavaFX Color.

Value Params
tuple

A tuple of 3 Integers (all of them must be lesser than 256) and a Double (lesser than 1.0) correspondent respectively to red, green, blue and opacity components of desired Color

Returns

Color correspondent to Tuple.

Inherited from
PaintIncludes
implicit def tuple42SfxColor(tuple: (Int, Int, Int, Double)): Color

Converts a tuple of 3 Integers and a double to a ScalaFX Color.

Converts a tuple of 3 Integers and a double to a ScalaFX Color.

Value Params
tuple

A tuple of 3 Integers (all of them must be lesser than 256) and a Double (lesser than 1.0) correspondent respectively to red, green, blue and opacity components of desired Color

Returns

Color correspondent to Tuple.

Inherited from
PaintIncludes
implicit def tweenableSet2KeyValueSet(ts: Set[Tweenable[_, _ <: Object]]): Set[KeyValue[_, _ <: Object]]
Value Params
ts

Set of scalafx.animation.Tweenables

Returns

Set of scalafx.animation.KeyValues.

Inherited from
AnimationIncludes
implicit def webEventClosureWrapper[T](handler: WebEvent[T] => Any): EventHandler[WebEvent[T]]

Converts a Function that manipulates a ScalaFX scalafx.scene.web.WebEngine and returns a scala.Any into a JavaFX's EventHandler that manipulates it's JavaFX counterpart.

Converts a Function that manipulates a ScalaFX scalafx.scene.web.WebEngine and returns a scala.Any into a JavaFX's EventHandler that manipulates it's JavaFX counterpart.

Value Params
handler

function that manipulates a ScalaFX's WebEngine

Returns

A JavaFX's EventHandler that manipulates a JavaFX's WebEngine

Inherited from
WebIncludes
implicit def wrapKeyFrameInSeq[T <: KeyFrame](kf: T): Seq[T]

Wraps a scalafx.animation.KeyFrame in a Seq.

Wraps a scalafx.animation.KeyFrame in a Seq.

Value Params
kf

KeyFrame to be wrapped.

Returns

Seq wrapping the KeyFrame.

Inherited from
AnimationIncludes
implicit def wrapKeyValueInSet[T, J <: Object](kv: KeyValue[T, J]): Set[KeyValue[_, _ <: Object]]

Wraps a scalafx.animation.KeyValue in a Set.

Wraps a scalafx.animation.KeyValue in a Set.

Value Params
kv

KeyValue to be injected.

Returns

Set wrapping the KeyValue

Inherited from
AnimationIncludes
implicit def wrapTweenableInSet[T, J <: Object](t: Tweenable[T, J]): Set[KeyValue[_, _ <: Object]]

Wraps a scalafx.animation.Tweenable in a Set.

Wraps a scalafx.animation.Tweenable in a Set.

Value Params
t

Tweenable to be injected.

Returns

Set wrapping the Tweenable

Inherited from
AnimationIncludes