Type to start searching...

Event

Properties
deprecated : boolean

True if deprecated.

name : identifier

Event name. Usually starts with lower case.

Valid values based on“string”.
:?[\p{L}_][\p{L}\p{N}_]*(:[\p{L}_][\p{L}\p{N}_]*)*

Value must begin with a letter or an underscore. Case and length are not restricted. Letters, numbers and underscores are allowed. Colon is used as a scope separator. Spaces and other punctuation characters are not allowed.

static : boolean

True if the event can update only shared state, false if it updates instance state.

Statics are available on instances and on the class metadata object.
Example


Object'read is a static event so (Person'read ...) and (myInstance'read ...) are
both valid.

vararg : boolean

True if the event accepts a variable number of arguments, which are stored as a list in the last argument.

Content
Parents