Trying to create a template using velocity to print attributes from element in Cameo.
One worded attributes work fine, but two worded attributes do not work.
this works:
#foreach($el in $d.satisifies)
$el.name
#end
but this doesn't work:
#foreach($el.satisifies)
$el.objectType
#end
It also gives a warning "WARN: [Report] No such property: objectType of "applied stereotype name" on mr.ObjectType
I have tried many variations and haven't had any luck getting the two worded attribute to print. Also, there is an applied stereotype with attributes attached to this element. Does anyone have any suggestions on how to get the two worded attributes to populate? Also, what does this warning mean?