Object
Operations
- getId(): String
- Returns the unique ID of self.
- onChange(s: String): Void [S]
- This method is called when a property value has changed. The name of the property is given as parameter. Overwrite this method for classes where you are interested in particular changes. Please note that this method only reports changes made via the user interface (the same holds for onCreate and onDelete).
- onCreate(): Void [S]
- This method is called when a new instance has been created via the user inteface.
- onDelete(): Void [S]
- This method is called immediately before an instance is deleted via the user interface.
- clone(): Object [S]
- Creates a clone of an instance. Composite objects are also cloned, other associated objects are linked by reference.
- delete(): Void [S]
- This method deletes self, including all links to self.
- canRead(): Boolean [N]
- Queries whether the current user has read access to self.
- canWrite(): Boolean [N]
- Queries whether the current user may modify or delete self.