Interface WritableValue<T>

Type Parameters:
T - The type of the wrapped value
All Known Subinterfaces:
Property<T>, StyleableProperty<T>, WritableBooleanValue, WritableDoubleValue, WritableFloatValue, WritableIntegerValue, WritableListValue<E>, WritableLongValue, WritableMapValue<K,V>, WritableNumberValue, WritableObjectValue<T>, WritableStringValue
All Known Implementing Classes:
BooleanProperty, BooleanPropertyBase, ConvertedProperty, DoubleProperty, DoublePropertyBase, IntegerProperty, IntegerPropertyBase, ListProperty, ListPropertyBase, LongProperty, LongPropertyBase, ObjectProperty, ObjectPropertyBase, ReadOnlyObjectWrapper, SimpleBooleanProperty, SimpleDoubleProperty, SimpleIntegerProperty, SimpleListProperty, SimpleLongProperty, SimpleObjectProperty, SimpleStringProperty, StringProperty, StringPropertyBase, StyleableBooleanProperty, StyleableIntegerProperty, StyleableObjectProperty

public interface WritableValue<T>
A WritableValue is an entity that wraps a value that can be read and set. In general this interface should not be implemented directly but one of its sub-interfaces (WritableBooleanValue etc.).
Since:
JavaFX 2.0
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the wrapped value.
    void
    setValue(T value)
    Set the wrapped value.
  • Method Details

    • getValue

      T getValue()
      Get the wrapped value.
      Returns:
      The current value
    • setValue

      void setValue(T value)
      Set the wrapped value.
      Parameters:
      value - The new value