GridData componentGridData = new GridData();
componentGridData.verticalAlignment = SWT.BEGINNING;
componentPanel.setLayoutData(componentGridData);
//Combo box
final ComboBox theComponent = new ComboBox(componentPanel, SWT.NONE);
theComponent.setLayoutData(new RowData(150, 50));
theComponent.setValueList(IComboBoxTestPanel.VALUES_1);
// ----------
Group testPanelIComponent = IComponentTestPanel.getTestPanel(mainComposite, theComponent);
Group testPanelIComboBox = IComboBoxTestPanel.getTestPanel(mainComposite, theComponent);
Group testPanelIEditableComponent = IEditableComponentTestPanel.getTestPanel(mainComposite, theComponent);