The object of CENPyOlpTech_AttribInitOperator class is passed to the PostTechInitAttributes callback as a parameter.
It can be used to obtain required operators within the scope of the PostTechInitAttributes callback in the %TechnologyName%.py script file, located in the folder of the plugin.
[Example]
def PostTechInitAttributes(techAttribInitOperator):
pass
[Example]
attribCreator = techAttribInitOperator.GetAttribCreator()
[Example]
attribGetter = techAttribInitOperator.GetAttribGetter()
[Example]
attribSetter = techAttribInitOperator.GetAttribSetter()
[Example]
logOperator = techAttribInitOperator.GetLoggerOperator()
[Example]
olpController = techAttribInitOperator.GetController()
|