public AbstractDecoratorFigure(String name, boolean formatName, Font font, int bottomSpace, int topSpace, boolean isExpandable){
this.formatName = formatName;
this.name = name;
this.isExpandable = isExpandable;
ToolbarLayout layout = new ToolbarLayout();
setLayoutManager(layout);
setOpaque(false);
Label topSpaceLabel = new Label("");
topSpaceLabel.setFont(new Font(null, "Arial", topSpace, SWT.NORMAL));