new Label(parent, SWT.NONE).setText(Messages.BreakpointTechnicalInfoPage_CHOOSE_LAUNCH);
String[] launchLabels = new String[list.size()];
for (int i = 0; i < launchLabels.length; i++) {
TargetInfo targetInfo = list.get(i);
DebugTargetImpl debugTarget = targetInfo.connectedTargetData.getDebugTarget();
launchLabels[i] = debugTarget.getLaunch().getLaunchConfiguration().getName();
}
final Combo typesCombo = new Combo(parent, SWT.READ_ONLY);
typesCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
typesCombo.setFont(parent.getFont());