### Eclipse Workspace Patch 1.0 #P org.eclipse.pde.ui Index: src/org/eclipse/pde/internal/ui/editor/product/ProductInfoSection.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/product/ProductInfoSection.java,v retrieving revision 1.41 diff -u -r1.41 ProductInfoSection.java --- src/org/eclipse/pde/internal/ui/editor/product/ProductInfoSection.java 29 Aug 2007 19:03:53 -0000 1.41 +++ src/org/eclipse/pde/internal/ui/editor/product/ProductInfoSection.java 21 Dec 2007 17:18:14 -0000 @@ -364,9 +364,15 @@ */ public void refresh() { IProduct product = getProduct(); - fNameEntry.setValue(product.getName(), true); - refreshProductCombo(product.getId()); - fAppCombo.setText(product.getApplication()); + if (product.getName() != null){ + fNameEntry.setValue(product.getName(), true); + } + if (product.getId() != null){ + refreshProductCombo(product.getId()); + } + if (product.getApplication() != null){ + fAppCombo.setText(product.getApplication()); + } fPluginButton.setSelection(!product.useFeatures()); fFeatureButton.setSelection(product.useFeatures()); super.refresh();