Sparx Systems Forum
Enterprise Architect => Automation Interface, Add-Ins and Tools => Topic started by: Jakub on September 21, 2013, 02:03:41 am
-
Hi I am using MDA transformation templates and I would like to create initial behavior - code:
this.param = param;
I tried:
code=%qt%this.$attName = $propertyName;%qt%
But seems that = sign is evaluated for equility because I am getting
this.;
How to bypass that?
-
Solved:
$eq = "="
and then specify
code=%qt%this.$attName $eq $propertyName;%qt%
this works
-
code=%qt%this.$attName "=" $propertyName;%qt%should work too, shouldn't it?
q.