Module javafx.base

Class SimpleObjectProperty<T>

Type Parameters:
T - the type of the wrapped Object
All Implemented Interfaces:
Observable, Property<T>, ReadOnlyProperty<T>, ObservableObjectValue<T>, ObservableValue<T>, WritableObjectValue<T>, WritableValue<T>
Direct Known Subclasses:
ReadOnlyObjectWrapper

public class SimpleObjectProperty<T>
extends ObjectPropertyBase<T>
This class provides a full implementation of a Property wrapping an arbitrary Object.
Since:
JavaFX 2.0
See Also:
ObjectPropertyBase
  • Constructor Details

    • SimpleObjectProperty

      public SimpleObjectProperty()
      The constructor of ObjectProperty
    • SimpleObjectProperty

      public SimpleObjectProperty​(T initialValue)
      The constructor of ObjectProperty
      Parameters:
      initialValue - the initial value of the wrapped value
    • SimpleObjectProperty

      public SimpleObjectProperty​(Object bean, String name)
      The constructor of ObjectProperty
      Parameters:
      bean - the bean of this ObjectProperty
      name - the name of this ObjectProperty
    • SimpleObjectProperty

      public SimpleObjectProperty​(Object bean, String name, T initialValue)
      The constructor of ObjectProperty
      Parameters:
      bean - the bean of this ObjectProperty
      name - the name of this ObjectProperty
      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