object ObjectProperty
Factory for scalafx.beans.property.ObjectProperty
instances.
- Source
- ObjectProperty.scala
- Alphabetic
- By Inheritance
- ObjectProperty
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply[J <: AnyRef](bean: AnyRef, name: String, initialValue: SFXDelegate[J]): ObjectProperty[J]
Creates a new
ObjectProperty
with with its reference bean and name and a scalafx.delegate.SFXDelegate as initial value.Creates a new
ObjectProperty
with with its reference bean and name and a scalafx.delegate.SFXDelegate as initial value.Special case when value is an ScalaFX wrapper, to be used as a work around for https://github.com/scalafx/scalafx/issues/14. Created object property will have value type of the wrapped JavaFX type to simplify use with binding.
- J
the JavaFX type of the value hold by this object property.
- bean
The bean of this
ObjectProperty
- name
The name of this
ObjectProperty
- initialValue
The initial value of the wrapped value
- def apply[T](bean: AnyRef, name: String, initialValue: T): ObjectProperty[T]
Creates a new
ObjectProperty
with with its reference bean and name and initial value.Creates a new
ObjectProperty
with with its reference bean and name and initial value.- bean
The bean of this
ObjectProperty
- name
The name of this
ObjectProperty
- initialValue
The initial value of the wrapped value
- def apply[T](bean: AnyRef, name: String): ObjectProperty[T]
Creates a new
ObjectProperty
with its reference bean and name.Creates a new
ObjectProperty
with its reference bean and name.- bean
The bean of this
ObjectProperty
- name
The name of this
ObjectProperty
- def apply[J <: AnyRef](value: SFXDelegate[J]): ObjectProperty[J]
Creates a new
ObjectProperty
with a scalafx.delegate.SFXDelegate as initial value.Creates a new
ObjectProperty
with a scalafx.delegate.SFXDelegate as initial value.Special case when value is an ScalaFX wrapper, to be used as a work around for https://github.com/scalafx/scalafx/issues/14. Created object property will have value type of the wrapped JavaFX type to simplify use with binding.
- J
the JavaFX type of the value hold by this object property.
- value
the initial value.
- def apply[T](initialValue: T): ObjectProperty[T]
Creates a new
ObjectProperty
.Creates a new
ObjectProperty
.- initialValue
the initial value.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fillProperty[J <: AnyRef](property: ObjectProperty[J], value: J): Unit
Helper method for setting a value of an
ObjectProperty
, it gracefully deals withvalue
that could benull
, without causingNullPointerException
.Helper method for setting a value of an
ObjectProperty
, it gracefully deals withvalue
that could benull
, without causingNullPointerException
.Handles situation when
value
is of JavaFX type, to avoid implicit conversion and NPE isvalue
isnull
.- J
ObjectProperty
type- property
ObjectProperty
to be filled.- value
Value to be injected in
ObjectProperty
.
- def fillProperty[J <: AnyRef](property: ObjectProperty[J], value: SFXDelegate[J]): Unit
Helper method for setting a value of an
ObjectProperty
, it gracefully deals withvalue
that could benull
, without causingNullPointerException
.Helper method for setting a value of an
ObjectProperty
, it gracefully deals withvalue
that could benull
, without causingNullPointerException
.Handles situation when
value
is of ScalaFX type, to avoid implicit conversion and NPE isvalue
isnull
.- J
ObjectProperty
type- property
ObjectProperty
to be filled.- value
Value to be injected in
ObjectProperty
, to avoid implicit conversion and NPE isvalue
isnull
.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- implicit def sfxObjectProperty2jfx[T](op: ObjectProperty[T]): javafx.beans.property.ObjectProperty[T]
Implicit conversion from a ScalaFX's
ObjectProperty
to a JavaFX'sObjectProperty
, extracting its delegate.Implicit conversion from a ScalaFX's
ObjectProperty
to a JavaFX'sObjectProperty
, extracting its delegate.- op
ScalaFX's
ObjectProperty
- returns
JavaFX's
ObjectProperty
, extracted from op's delegate.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
ScalaFX is a UI DSL written within the Scala Language that sits on top of JavaFX 2.x and and JavaFX 8. This means that every ScalaFX application is also a valid Scala application. By extension it supports full interoperability with Java and can run anywhere the Java Virtual Machine (JVM) and JavaFX 2.0 or JavaFX 8 are supported.
Package Structure
ScalaFX package structure corresponds to JavaFX package structure, for instance
scalafx.animation
corresponds tojavafx.animation
.Example Usage
A basic ScalaFX application is created creating an object that is an instance of
JFXApp
. Following Java FX theatre metaphor, it contains astage
that contains ascene
. Astage
roughly corresponds to a window in a typical UI environment. Thescene
holds UI content presented to the user. In the example below, the content is a pane with a singlelabel
component.