Basics

Guides

API Reference

Menu

Basics

Guides

API Reference

class: DoubleProperty

[13:7] extends: NumberProperty

Wraps JavaFX's DoubleProperty backed by SimpleDoubleProperty. Holds a double value. Shared Property + NumberProperty surface (bind / listeners / isBound / asString / etc.) is inherited.

Methods

  • DoubleProperty (double Value = 0.0)

    Creates a new DoubleProperty with the given initial value (defaults to 0.0).

    • @p Value is the initial double value.
  • adopt (object Ajo)

    Wraps an existing DoubleProperty AussomJavaObject.

    • @p Ajo is an AussomJavaObject around a javafx DoubleProperty.
    • @r A new DoubleProperty wrapper.
  • get ()

    Returns the current double value.

  • set (double Value)

    Sets the double value via the primitive Java signature.

    • @p Value is the new double.
    • @r this object
  • setValue (double Value)

    Sets the value via the boxed Number API. Aussom double is boxed to java.lang.Double before dispatch.

    • @p Value is the new double.
    • @r this object