Module javafx.base

Class SimpleFloatProperty

All Implemented Interfaces:
NumberExpression, Observable, Property<Number>, ReadOnlyProperty<Number>, ObservableFloatValue, ObservableNumberValue, ObservableValue<Number>, WritableFloatValue, WritableNumberValue, WritableValue<Number>
Direct Known Subclasses:
ReadOnlyFloatWrapper

public class SimpleFloatProperty
extends FloatPropertyBase
This class provides a full implementation of a Property wrapping a float value.
Since:
JavaFX 2.0
See Also:
FloatPropertyBase
  • Constructor Details

    • SimpleFloatProperty

      public SimpleFloatProperty()
      The constructor of FloatProperty
    • SimpleFloatProperty

      public SimpleFloatProperty​(float initialValue)
      The constructor of FloatProperty
      Parameters:
      initialValue - the initial value of the wrapped value
    • SimpleFloatProperty

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

      public SimpleFloatProperty​(Object bean, String name, float initialValue)
      The constructor of FloatProperty
      Parameters:
      bean - the bean of this FloatProperty
      name - the name of this FloatProperty
      initialValue - the initial value of the wrapped value