Package javafx.css

Class StyleableLongProperty

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

public abstract class StyleableLongProperty
extends LongPropertyBase
implements StyleableProperty<Number>
This class extends LongPropertyBase and provides a partial implementation of a StyleableProperty. The method StyleableProperty.getCssMetaData() is not implemented. This class is used to make a LongProperty, that would otherwise be implemented as a LongPropertyBase, styleable by CSS.
Since:
JavaFX 8.0
See Also:
LongPropertyBase, CssMetaData, StyleableProperty
  • Constructor Details

    • StyleableLongProperty

      public StyleableLongProperty()
      The constructor of the StyleableLongProperty.
    • StyleableLongProperty

      public StyleableLongProperty​(long initialValue)
      The constructor of the StyleableLongProperty.
      Parameters:
      initialValue - the initial value of the wrapped Object
  • Method Details

    • applyStyle

      public void applyStyle​(StyleOrigin origin, Number v)
      This method is called from CSS code to set the value of the property.
      Specified by:
      applyStyle in interface StyleableProperty<Number>
      Parameters:
      origin - the origin
      v - the value
    • bind

      public void bind​(ObservableValue<? extends Number> observable)
      Create a unidirection binding for this Property.

      Note that JavaFX has all the bind calls implemented through weak listeners. This means the bound property can be garbage collected and stopped from being updated.

      Specified by:
      bind in interface Property<Number>
      Overrides:
      bind in class LongPropertyBase
      Parameters:
      observable - The observable this Property should be bound to.
    • set

      public void set​(long v)
      Set the wrapped value. Unlike WritableLongValue.setValue(java.lang.Number), this method uses primitive long.
      Specified by:
      set in interface WritableLongValue
      Overrides:
      set in class LongPropertyBase
      Parameters:
      v - The new value
    • getStyleOrigin

      public StyleOrigin getStyleOrigin()
      Tells the origin of the value of the property. This is needed to determine whether or not CSS can override the value.
      Specified by:
      getStyleOrigin in interface StyleableProperty<Number>
      Returns:
      the style origin