Module javafx.base

Interface WritableDoubleValue

All Superinterfaces:
WritableNumberValue, WritableValue<Number>
All Known Implementing Classes:
DoubleProperty, DoublePropertyBase, JavaBeanDoubleProperty, ReadOnlyDoubleWrapper, SimpleDoubleProperty, SimpleStyleableDoubleProperty, StyleableDoubleProperty

public interface WritableDoubleValue
extends WritableNumberValue
A writable double value.
Since:
JavaFX 2.0
See Also:
WritableValue, WritableNumberValue
  • Method Summary

    Modifier and Type Method Description
    double get()
    Get the wrapped value.
    void set​(double value)
    Set the wrapped value.
    void setValue​(Number value)
    Set the wrapped value.

    Methods inherited from interface javafx.beans.value.WritableValue

    getValue
  • Method Details