public static final int MARGIN_SIZE = 10;
@Override
protected IFigure createFigure() {
Figure panel = new ScalableFreeformLayeredPane();
panel.setBackgroundColor(ColorConstants.listBackground);
panel.setLayoutManager(new XYLayout());
panel.setBorder(new MarginBorder(MARGIN_SIZE));
ConnectionLayer cLayer = (ConnectionLayer) getLayer(CONNECTION_LAYER);
cLayer.setAntialias(SWT.ON);
return panel;