Basics

Guides

API Reference

Menu

Basics

Guides

API Reference

class: LongProperty

[17:7] extends: NumberProperty

Wraps JavaFX's LongProperty backed by SimpleLongProperty. Holds a long value that other JavaFX components can bind to or listen on. Shared Property + NumberProperty surface (bind / listeners / isBound / asString / etc.) is inherited. Aussom int maps to Java long; values within long range pass straight through.

Methods

  • LongProperty (int Value = 0)

    Creates a new LongProperty with the given initial value (defaults to 0).

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

    Wraps an existing LongProperty AussomJavaObject.

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

    Returns the current long value.

  • set (int Value)

    Sets the long value via the primitive Java signature.

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

    Sets the value via the boxed Number API. Aussom int is boxed to java.lang.Long before dispatch.

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