Class/Object

scalafx.scene.control

TextFieldProperty

Related Docs: object TextFieldProperty | package control

Permalink

class TextFieldProperty extends ReadOnlyObjectProperty[javafx.scene.control.TextField] with SFXDelegate[ReadOnlyObjectProperty[javafx.scene.control.TextField]] with AlignmentPropertyDelegate

Annotations
@deprecated
Deprecated

(Since version 8.0.60-R10) Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)

Source
TextFieldProperty.scala
Linear Supertypes
AlignmentPropertyDelegate, ReadOnlyObjectProperty[javafx.scene.control.TextField], ReadOnlyProperty[javafx.scene.control.TextField, javafx.scene.control.TextField], ObservableValue[javafx.scene.control.TextField, javafx.scene.control.TextField], Observable, SFXDelegate[ReadOnlyObjectProperty[javafx.scene.control.TextField]], ObjectExpression[javafx.scene.control.TextField], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TextFieldProperty
  2. AlignmentPropertyDelegate
  3. ReadOnlyObjectProperty
  4. ReadOnlyProperty
  5. ObservableValue
  6. Observable
  7. SFXDelegate
  8. ObjectExpression
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TextFieldProperty(delegate: ReadOnlyObjectProperty[javafx.scene.control.TextField])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def =!=(v: AnyRef): BooleanBinding

    Permalink
    Definition Classes
    ObjectExpression
  4. def =!=[T](v: ObservableValue[T, T]): BooleanBinding

    Permalink
    Definition Classes
    ObjectExpression
  5. def =!=(v: ObservableObjectValue[_]): BooleanBinding

    Permalink
    Definition Classes
    ObjectExpression
  6. def =!=(v: Null): BooleanBinding

    Permalink
    Definition Classes
    ObjectExpression
  7. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def ===(v: AnyRef): BooleanBinding

    Permalink
    Definition Classes
    ObjectExpression
  9. def ===[T](v: ObservableValue[T, T]): BooleanBinding

    Permalink
    Definition Classes
    ObjectExpression
  10. def ===(v: ObservableObjectValue[_]): BooleanBinding

    Permalink
    Definition Classes
    ObjectExpression
  11. def ===(v: Null): BooleanBinding

    Permalink
    Definition Classes
    ObjectExpression
  12. def alignment: ObjectBinding[Pos]

    Permalink
    Definition Classes
    AlignmentPropertyDelegate
  13. def apply(): javafx.scene.control.TextField

    Permalink

    Returns ObservableValue

    Returns ObservableValue

    returns

    ObservableValue

    Definition Classes
    ObservableValue
  14. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  15. def bean: AnyRef

    Permalink

    Returns the Object that contains this property.

    Returns the Object that contains this property.

    Definition Classes
    ReadOnlyProperty
  16. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. val delegate: ReadOnlyObjectProperty[javafx.scene.control.TextField]

    Permalink

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    TextFieldPropertyReadOnlyObjectPropertySFXDelegateObjectExpression
  18. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. def equals(ref: Any): Boolean

    Permalink

    Verifies if a object is equals to this delegate.

    Verifies if a object is equals to this delegate.

    ref

    Object to be compared.

    returns

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

    Definition Classes
    SFXDelegate → AnyRef → Any
  20. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  22. def hashCode(): Int

    Permalink

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def name: String

    Permalink

    Returns the name of this property.

    Returns the name of this property.

    Definition Classes
    ReadOnlyProperty
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. def onChange[J1 >: javafx.scene.control.TextField](op: ⇒ Unit): Subscription

    Permalink

    Adds a function as a ChangeListener.

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

    op

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

    returns

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

    Definition Classes
    ObservableValue
  29. def onChange[J1 >: javafx.scene.control.TextField](op: (ObservableValue[javafx.scene.control.TextField, javafx.scene.control.TextField], J1, J1) ⇒ Unit): Subscription

    Permalink

    Adds a function as a ChangeListener.

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

    J1

    J superclass.

    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.

    Definition Classes
    ObservableValue
  30. def onInvalidate(op: ⇒ Unit): Subscription

    Permalink

    Adds a no argument function as a JavaFX InvalidationListener.

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

    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.

    Definition Classes
    Observable
  31. def onInvalidate(op: (Observable) ⇒ Unit): Subscription

    Permalink

    Adds a function as a JavaFX InvalidationListener.

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

    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.

    Definition Classes
    Observable
  32. def select[T](s: String): ObjectBinding[T]

    Permalink
    Definition Classes
    ObjectExpression
  33. def selectBoolean(s: String): BooleanBinding

    Permalink
    Definition Classes
    ObjectExpression
  34. def selectDouble(s: String): DoubleBinding

    Permalink
    Definition Classes
    ObjectExpression
  35. def selectFloat(s: String): FloatBinding

    Permalink
    Definition Classes
    ObjectExpression
  36. def selectInteger(s: String): IntegerBinding

    Permalink
    Definition Classes
    ObjectExpression
  37. def selectLong(s: String): LongBinding

    Permalink
    Definition Classes
    ObjectExpression
  38. def selectString(s: String): StringBinding

    Permalink
    Definition Classes
    ObjectExpression
  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  40. def toString(): String

    Permalink

    returns

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

    Definition Classes
    SFXDelegate → AnyRef → Any
  41. def value: javafx.scene.control.TextField

    Permalink

    Returns ObservableValue

    Returns ObservableValue

    returns

    ObservableValue

    Definition Classes
    ReadOnlyObjectPropertyObservableValue
  42. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def onAction: ObjectBinding[ActionEvent]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)

  2. def prefColumnCount: IntegerBinding

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)

  3. def promptText: StringBinding

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)

  4. def text: StringBinding

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)

Inherited from AlignmentPropertyDelegate

Inherited from ReadOnlyObjectProperty[javafx.scene.control.TextField]

Inherited from ReadOnlyProperty[javafx.scene.control.TextField, javafx.scene.control.TextField]

Inherited from ObservableValue[javafx.scene.control.TextField, javafx.scene.control.TextField]

Inherited from Observable

Inherited from SFXDelegate[ReadOnlyObjectProperty[javafx.scene.control.TextField]]

Inherited from ObjectExpression[javafx.scene.control.TextField]

Inherited from AnyRef

Inherited from Any

Ungrouped