Basics
Guides
API Reference
Basics
Guides
API Reference
[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.
LongProperty (int Value = 0)
Creates a new LongProperty with the given initial value (defaults to 0).
Value is the initial long value.adopt (object Ajo)
Wraps an existing LongProperty AussomJavaObject.
Ajo is an AussomJavaObject around a javafx LongProperty.A new LongProperty wrapper.get ()
Returns the current long value.
set (int Value)
Sets the long value via the primitive Java signature.
Value is the new long.this objectsetValue (int Value)
Sets the value via the boxed Number API. Aussom int is boxed to java.lang.Long before dispatch.
Value is the new long.this object
Aussom
Write once. Embed everywhere.
Copyright 2026 Austin Lehman. All rights reserved.