}
@Override
public void performApply(final ILaunchConfigurationWorkingCopy config) {
LaunchType type;
if (allRadio.getSelection()) {
type = LaunchType.ALL;
} else {
type = LaunchType.MODULE;
}
config.setAttribute(ICoverAttributes.PROJECT, projectMBr.getText());
config.setAttribute(ICoverAttributes.MODULE, moduleBr.getText());
config.setAttribute(ICoverAttributes.FILE, fileBr.getText());
config.setAttribute(ICoverAttributes.TYPE, type.toString());
config.setAttribute(ICoverAttributes.COMBO, testCombo.getText());
}