OCLOperators OnCreate
No edit summary
m ((username removed) (log details removed): Moving to Documentation namespace)
(No difference)

Revision as of 21:06, 20 December 2023

This page was created by Peter on 2019-11-18. Last edited by Stephanie@mdriven.net on 2025-02-06.

OnCreate is often called after a new object has been created.

It's very much like a .Net constructor for OCL.

You can use self.base.OnCreate to call the superclass's OnCreate as you would in another language.

Example

In the method body for OnCreate, set this OCL:

CreateTime:=DateTime.Now; 
self.Guid.newGuid() 

See more: Acting on object changes

See also: OnUpdate, OnDelete, OnStateChange