Comment #2 on issue 574 by tudor.gi...(a)gmail.com: Nodes with complex shapes
do not position the children nodes with complex shapes properly
http://code.google.com/p/moose-technology/issues/detail?id=574
I do not understand.
umlClass does specify a ChildrenShape:
umlClassWithTitle: aBlock
| builder |
builder := MOFormsBuilder new.
builder column; center; fill; pref; grow.
builder
row; center; pref; fill; grow;
row; center; fill; pref; grow.
builder x: 1 y: 1 add: (MORectangleShape new text: aBlock).
builder x: 1 y: 2 add: MORectangleShape new .
builder x: 1 y: 2 add: MOChildrenShape new.
^ view shape: builder asShape
The semantics are pretty clear in that the children should be in the
ChildrenShape area :).