Module javafx.base

Class SimpleLongProperty

All Implemented Interfaces:
NumberExpression, Observable, Property<Number>, ReadOnlyProperty<Number>, ObservableLongValue, ObservableNumberValue, ObservableValue<Number>, WritableLongValue, WritableNumberValue, WritableValue<Number>
Direct Known Subclasses:
ReadOnlyLongWrapper

public class SimpleLongProperty extends LongPropertyBase
This class provides a full implementation of a Property wrapping a long value.
Since:
JavaFX 2.0
See Also:
  • Constructor Details

    • SimpleLongProperty

      public SimpleLongProperty()
      The constructor of LongProperty
    • SimpleLongProperty

      public SimpleLongProperty(long initialValue)
      The constructor of LongProperty
      Parameters:
      initialValue - the initial value of the wrapped value
    • SimpleLongProperty

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

      public SimpleLongProperty(Object bean, String name, long initialValue)
      The constructor of LongProperty
      Parameters:
      bean - the bean of this LongProperty
      name - the name of this LongProperty
      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