Singleton
(Added Edited template with July 12, 2025.) |
No edit summary |
||
Line 3: | Line 3: | ||
The name of a design pattern that establishes a Class that will only have one object instance. | The name of a design pattern that establishes a Class that will only have one object instance. | ||
In code you can go like this | |||
this.ServiceProvider().GetEcoService<IExtentService>().AllInstances(typeof(YourClass))[0].GetValue<YourClass>() | |||
In ocl/eal go like this: | |||
YourClass.oclSingleton or YourClass.allinstances->first |
Latest revision as of 08:49, 24 February 2025
This page was created by Stephanie on 2024-05-28. Last edited by Hans.karlsen on 2025-02-24.
The name of a design pattern that establishes a Class that will only have one object instance.
In code you can go like this
this.ServiceProvider().GetEcoService<IExtentService>().AllInstances(typeof(YourClass))[0].GetValue<YourClass>()
In ocl/eal go like this:
YourClass.oclSingleton or YourClass.allinstances->first