Module javafx.base

Class SimpleStringProperty

All Implemented Interfaces:
Observable, Property<String>, ReadOnlyProperty<String>, ObservableObjectValue<String>, ObservableStringValue, ObservableValue<String>, WritableObjectValue<String>, WritableStringValue, WritableValue<String>
Direct Known Subclasses:
ReadOnlyStringWrapper

public class SimpleStringProperty extends StringPropertyBase
This class provides a full implementation of a Property wrapping a String value.
Since:
JavaFX 2.0
See Also:
  • Constructor Details

    • SimpleStringProperty

      public SimpleStringProperty()
      The constructor of StringProperty
    • SimpleStringProperty

      public SimpleStringProperty(String initialValue)
      The constructor of StringProperty
      Parameters:
      initialValue - the initial value of the wrapped value
    • SimpleStringProperty

      public SimpleStringProperty(Object bean, String name)
      The constructor of StringProperty
      Parameters:
      bean - the bean of this StringProperty
      name - the name of this StringProperty
    • SimpleStringProperty

      public SimpleStringProperty(Object bean, String name, String initialValue)
      The constructor of StringProperty
      Parameters:
      bean - the bean of this StringProperty
      name - the name of this StringProperty
      initialValue - the initial value of the wrapped value
  • Method Details

    • getBean

      public Object getBean()
      Returns the Object that contains this property. If this property is not contained in an Object, null is returned.
      Returns:
      the containing Object or null
    • getName

      public String getName()
      Returns the name of this property. If the property does not have a name, this method returns an empty String.
      Returns:
      the name or an empty String