Basics

Guides

API Reference

Menu

Basics

Guides

API Reference

class: BooleanProperty

[15:7] extends: Property

Wraps JavaFX's BooleanProperty backed by SimpleBooleanProperty. Holds a boolean value. Shared Property surface (bind / listeners / isBound / getName / etc.) is inherited. Not a numeric property — no asString overloads.

Methods

  • BooleanProperty (bool Value = false)

    Creates a new BooleanProperty with the given initial value (defaults to false).

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

    Wraps an existing BooleanProperty AussomJavaObject.

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

    Returns the current bool value.

  • set (bool Value)

    Sets the bool value via the primitive Java signature.

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

    Sets the value via the boxed Boolean API.

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