return copy;
}
@Override
protected IWidgetPropertyDescriptor[] getLayoutProperties() {
WidgetProperty hgapProperty = new WidgetProperty("hgap", FlowLayout.class, 5);
WidgetProperty vgapProperty = new WidgetProperty("vgap", FlowLayout.class, 5);
WidgetProperty alignOnBaselineProperty = new WidgetProperty("alignOnBaseline", FlowLayout.class, false);
WidgetProperty alignmentProperty = new WidgetProperty("alignment", FlowLayout.class, new FlowLayoutAlignmentRenderer(), new FlowLayoutAlignmentEditor(), FlowLayout.CENTER);
return new IWidgetPropertyDescriptor[]{alignmentProperty, hgapProperty, vgapProperty, alignOnBaselineProperty};
}