GridDataFactory.fillDefaults().grab(true, true).applyTo(servicesViewer.getControl());
Action addServiceAction = new Action(Messages.COMMONTXT_ADD_SERVICE, CloudFoundryImages.NEW_SERVICE) {
@Override
public void run() {
IWizard wizard = new CloudFoundryServiceWizard(cloudServer);
WizardDialog dialog = new WizardDialog(getSection().getShell(), wizard);
dialog.setBlockOnOpen(true);
dialog.open();
}
};