View | Details | Raw Unified | Return to bug 204924
Collapse All | Expand All

(-)src/org/eclipse/pde/internal/ui/wizards/plugin/NewProjectCreationPage.java (+11 lines)
Lines 226-231 Link Here
226
			else
226
			else
227
				fTargetCombo.setText(ICoreConstants.TARGET33);
227
				fTargetCombo.setText(ICoreConstants.TARGET33);
228
		}
228
		}
229
		fTargetCombo.addSelectionListener(new SelectionAdapter(){
230
			public void widgetSelected(SelectionEvent e) {
231
				if (fTargetCombo.getText().equals(ICoreConstants.TARGET30)){
232
					fEEChoice.setEnabled(false);
233
					fExeEnvButton.setEnabled(false);
234
				} else {
235
					fEEChoice.setEnabled(true);
236
					fExeEnvButton.setEnabled(true);
237
				}
238
			}
239
		});
229
		
240
		
230
	    fOSGIButton = createButton(group, SWT.RADIO, 1, 30);
241
	    fOSGIButton = createButton(group, SWT.RADIO, 1, 30);
231
    	fOSGIButton.setText(PDEUIMessages.NewProjectCreationPage_pPureOSGi); 	   
242
    	fOSGIButton.setText(PDEUIMessages.NewProjectCreationPage_pPureOSGi); 	   

Return to bug 204924