TextFieldProperty

@deprecated("Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)", "8.0.60-R10") class TextFieldProperty(val delegate: ReadOnlyObjectProperty[TextField]) extends ReadOnlyObjectProperty[TextField] with SFXDelegate[ReadOnlyObjectProperty[TextField]] with AlignmentPropertyDelegate
Companion
object
Deprecated
class ReadOnlyObjectProperty[TextField]
trait ReadOnlyProperty[TextField, TextField]
trait ObservableValue[TextField, TextField]
trait SFXDelegate[ReadOnlyObjectProperty[TextField]]
class ObjectExpression[TextField]
class Object
trait Matchable
class Any

Value members

Constructors

def this(bean: Object, name: String, value: T)
Implicitly added by sfxTextFieldProperty2jfx

Concrete methods

def value: T
Implicitly added by sfxTextFieldProperty2jfx

Deprecated methods

@deprecated("Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)", "8.0.60-R10")
def onAction: ObjectBinding[ActionEvent]
Deprecated
@deprecated("Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)", "8.0.60-R10")
def prefColumnCount: IntegerBinding
Deprecated
@deprecated("Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)", "8.0.60-R10")
Deprecated
@deprecated("Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)", "8.0.60-R10")
Deprecated

Inherited methods

def =!=(v: AnyRef): BooleanBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def =!=(v: ObservableObjectValue[_]): BooleanBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def =!=(v: Null): BooleanBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def =!=(v: AnyRef): BooleanBinding
Inherited from
ObjectExpression
Inherited from
ObjectExpression
def =!=(v: ObservableObjectValue[_]): BooleanBinding
Inherited from
ObjectExpression
def =!=(v: Null): BooleanBinding
Inherited from
ObjectExpression
def ===(v: AnyRef): BooleanBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def ===(v: ObservableObjectValue[_]): BooleanBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def ===(v: Null): BooleanBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def ===(v: AnyRef): BooleanBinding
Inherited from
ObjectExpression
Inherited from
ObjectExpression
def ===(v: ObservableObjectValue[_]): BooleanBinding
Inherited from
ObjectExpression
def ===(v: Null): BooleanBinding
Inherited from
ObjectExpression
def apply(): T
Implicitly added by sfxTextFieldProperty2jfx

Returns ObservableValue

Returns ObservableValue

Returns

ObservableValue

Inherited from
ObservableValue
def apply(): TextField

Returns ObservableValue

Returns ObservableValue

Returns

ObservableValue

Inherited from
ObservableValue
def bean: AnyRef
Implicitly added by sfxTextFieldProperty2jfx

Returns the Object that contains this property.

Returns the Object that contains this property.

Inherited from
ReadOnlyProperty
def bean: AnyRef

Returns the Object that contains this property.

Returns the Object that contains this property.

Inherited from
ReadOnlyProperty
override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value Params
ref

Object to be compared.

Returns

if the other object is equals to this delegate or not.

Definition Classes
Inherited from
SFXDelegate
override def hashCode: Int
Returns

The delegate hashcode

Definition Classes
Inherited from
SFXDelegate
def name: String
Implicitly added by sfxTextFieldProperty2jfx

Returns the name of this property.

Returns the name of this property.

Inherited from
ReadOnlyProperty
def name: String

Returns the name of this property.

Returns the name of this property.

Inherited from
ReadOnlyProperty
def onChange[J1 >: T](op: => Unit): Subscription
Implicitly added by sfxTextFieldProperty2jfx

Adds a function as a `ChangeListener`. This function has no arguments because it will not handle values changed.

Adds a function as a `ChangeListener`. This function has no arguments because it will not handle values changed.

Value Params
op

A Function with no arguments. It will be called when value changes.

Returns

A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

Inherited from
ObservableValue
def onChange[J1 >: T](op: (ObservableValue[T, T], J1, J1) => Unit): Subscription
Implicitly added by sfxTextFieldProperty2jfx

Adds a function as a `ChangeListener`. This function has all arguments from T, T) `changed` method from ChangeListener.

Adds a function as a `ChangeListener`. This function has all arguments from T, T) `changed` method from ChangeListener.

Type Params
J1

J superclass.

Value Params
op

Function that receives a `ObservableValue`, the old value and the new value. It will be called when value changes.

Returns

A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

Inherited from
ObservableValue
def onChange[J1 >: TextField](op: => Unit): Subscription

Adds a function as a `ChangeListener`. This function has no arguments because it will not handle values changed.

Adds a function as a `ChangeListener`. This function has no arguments because it will not handle values changed.

Value Params
op

A Function with no arguments. It will be called when value changes.

Returns

A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

Inherited from
ObservableValue
def onChange[J1 >: TextField](op: (ObservableValue[TextField, TextField], J1, J1) => Unit): Subscription

Adds a function as a `ChangeListener`. This function has all arguments from T, T) `changed` method from ChangeListener.

Adds a function as a `ChangeListener`. This function has all arguments from T, T) `changed` method from ChangeListener.

Type Params
J1

J superclass.

Value Params
op

Function that receives a `ObservableValue`, the old value and the new value. It will be called when value changes.

Returns

A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

Inherited from
ObservableValue
def onInvalidate(op: => Unit): Subscription
Implicitly added by sfxTextFieldProperty2jfx

Adds a no argument function as a JavaFX `InvalidationListener`. This function has no arguments because it will not handle invalidated values.

Adds a no argument function as a JavaFX `InvalidationListener`. This function has no arguments because it will not handle invalidated values.

Value Params
op

A Function with no arguments. It will be called when value was invalidated.

Returns

A new scalafx.event.subscriptions.Subscription to remove JavaFX InvalidationListener.

Inherited from
Observable
Implicitly added by sfxTextFieldProperty2jfx

Adds a function as a JavaFX `InvalidationListener`. This function has all arguments from `invalidated` method from InvalidationListener.

Adds a function as a JavaFX `InvalidationListener`. This function has all arguments from `invalidated` method from InvalidationListener.

Value Params
op

Function that receives a ScalaFX Observable. It will be called when value was invalidated.

Returns

A new scalafx.event.subscriptions.Subscription to remove JavaFX InvalidationListener.

Inherited from
Observable
def onInvalidate(op: => Unit): Subscription

Adds a no argument function as a JavaFX `InvalidationListener`. This function has no arguments because it will not handle invalidated values.

Adds a no argument function as a JavaFX `InvalidationListener`. This function has no arguments because it will not handle invalidated values.

Value Params
op

A Function with no arguments. It will be called when value was invalidated.

Returns

A new scalafx.event.subscriptions.Subscription to remove JavaFX InvalidationListener.

Inherited from
Observable

Adds a function as a JavaFX `InvalidationListener`. This function has all arguments from `invalidated` method from InvalidationListener.

Adds a function as a JavaFX `InvalidationListener`. This function has all arguments from `invalidated` method from InvalidationListener.

Value Params
op

Function that receives a ScalaFX Observable. It will be called when value was invalidated.

Returns

A new scalafx.event.subscriptions.Subscription to remove JavaFX InvalidationListener.

Inherited from
Observable
def select[T](s: String): ObjectBinding[T]
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def select[T](s: String): ObjectBinding[T]
Inherited from
ObjectExpression
def selectBoolean(s: String): BooleanBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def selectBoolean(s: String): BooleanBinding
Inherited from
ObjectExpression
def selectDouble(s: String): DoubleBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def selectDouble(s: String): DoubleBinding
Inherited from
ObjectExpression
def selectFloat(s: String): FloatBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def selectFloat(s: String): FloatBinding
Inherited from
ObjectExpression
def selectInteger(s: String): IntegerBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def selectInteger(s: String): IntegerBinding
Inherited from
ObjectExpression
def selectLong(s: String): LongBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def selectLong(s: String): LongBinding
Inherited from
ObjectExpression
def selectString(s: String): StringBinding
Implicitly added by sfxTextFieldProperty2jfx
Inherited from
ObjectExpression
def selectString(s: String): StringBinding
Inherited from
ObjectExpression
override def toString: String
Returns

Returns the original delegate's toString() adding a [SFX] prefix.

Definition Classes
Inherited from
SFXDelegate
def value: TextField

Concrete fields

override val delegate: ReadOnlyObjectProperty[T]
Implicitly added by sfxTextFieldProperty2jfx
override val delegate: ReadOnlyObjectProperty[TextField]