leftScrolled.setExpandHorizontal(true);
leftScrolled.setExpandVertical(true);
leftScrolled.setLayoutData(new GridData(GridData.FILL_BOTH));
leftScrolled.setLayout(new GridLayout(1, false));
Composite servicePane = toolkit.createComposite(leftScrolled);
TableWrapLayout layout = new TableWrapLayout();
servicePane.setLayout(layout);
servicePane.setLayoutData(new GridData(GridData.FILL_BOTH));
leftScrolled.setContent(servicePane);
ScrolledComposite rightScrolled = new ScrolledComposite(compTop, SWT.H_SCROLL | SWT.V_SCROLL); // toolkit.createComposite(sashFormOverview);
rightScrolled.setExpandHorizontal(true);
rightScrolled.setExpandVertical(true);
rightScrolled.setLayoutData(new GridData(GridData.FILL_BOTH));
rightScrolled.setLayout(new GridLayout(1, false));
Composite rightPane = toolkit.createComposite(rightScrolled);
layout = new TableWrapLayout();
rightPane.setLayout(layout);
rightPane.setLayoutData(new GridData(GridData.FILL_BOTH));
rightScrolled.setContent(rightPane);
createIdentitySection(rightPane, toolkit);