A typed property that holds a value.

Constructor

@:value({ alwaysCallOnChange : false })new(?defaultValue:T, alwaysCallOnChange:Bool = false)

Variables

@:value(false)locked:Bool = false

If true, value cannot be changed

read onlyonChange:List<Property<T> ‑> Void>

List of functions that will be called if the property changes.

value:T

The value of this property.

Methods

bind(property:Property<T>):Void

Binds a property to this property. If the source property changes, this property's value also changes

Parameters:

property

The property to bound this property to. Has to be of the same type.

clone():Property<T>

Clone the Property

dispose():Void

Dispose the Property

@:value({ properties : null })getState(?properties:Array<String>):String

Returns the string representation of the Property in Haxe serialized format.

Parameters:

properties

If null, all properties are returned

Returns:

String

unbind(property:Property<T>):Void

Unbinds a previously bound property, so this property no longer listens to the property's onChange events

Parameters:

property

The property to unbind