Hi all,
I have a Problem with the display of the output of one of my dynamic constraints. The constraint creates a list of all requirements used in the FMEDA sheet, to check if all specified ones have been used.
This is the snippet that creates the set:
let MessageArg1:String = self.oclAsType(dc::DCComponentEntry)->closure(children.oclAsType(dc::DCComponentEntry))->collect(e|e.failureModes.oclAsType(dc::DCFailureModeEntry).getProfilePropertyValue('user_element_measure'))->asOrderedSet() in
false
The generated output seems to be too long and is not displayed completely in the validation window. Is it possible to somehow add some newlines in between the entries of a set and would that even work with the medini output? I am a bit lost on how to do this with OCL.