How to get random order of children editors
I have an concept Widget thas has children of abstract concept Property having an expression node from the base language. Each of concepts inheriting from Property has its own editor looking like x = <expression> in the model editor.
The questions is how to create an editor for the Widget concept so that I could do all of those cases:
Also a related question is how to specify which set of Property children are acceptable for the given subclass of the Widget concept. So that for example I can express in my language structure that concept W1 has X sub-concept of Property and concept W2 has X and Y sub-concepts of Property?
Thanks, Jacek
The questions is how to create an editor for the Widget concept so that I could do all of those cases:
widget <name> x = <expression>, y = <expression> widget <name> y = <expression>, x = <expression> widget <name> x = <expression>
Also a related question is how to specify which set of Property children are acceptable for the given subclass of the Widget concept. So that for example I can express in my language structure that concept W1 has X sub-concept of Property and concept W2 has X and Y sub-concepts of Property?
Thanks, Jacek
Please sign in to leave a comment.
You just add a %your_child_role% cell in editor and set the "separator" property for it in inspector. This will insert editors for child nodes, which will be separated by the separator symbol.
You can look, for example, how it's done for method arguments (see attached screenshot).
Regards,
Mihail