blob: 2c008430972e705932e9c8f62114403b9e071764 [file] [log] [blame]
findShape('WidgetFigure').layout = createCentredLayout();
operation findShape(name : String) {
return GmfGraph!Shape.all.selectOne(s|s.name = name);
}
operation createCentredLayout() : GmfGraph!CustomLayout {
var layout = new GmfGraph!CustomLayout;
layout.qualifiedClassName = 'widgets.custom.layouts.CentredLayout';
return layout;
}