From be225d9a508584f1fc83558deec5c60a5b4c8c63 Mon Sep 17 00:00:00 2001 From: Chris Recoskie Date: Tue, 2 Jan 2007 19:20:38 +0000 Subject: [PATCH] RESOLVED - bug 167099: Issues with adding custom pages to New Project Wizard https://bugs.eclipse.org/bugs/show_bug.cgi?id=167099 --- .../cdt/managedbuilder/ui/wizards/MBSCustomPage.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/MBSCustomPage.java b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/MBSCustomPage.java index 8a0bc794971..1eb351ecfce 100644 --- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/MBSCustomPage.java +++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/MBSCustomPage.java @@ -29,7 +29,7 @@ public abstract class MBSCustomPage implements IWizardPage protected IWizard wizard = null; /** - * Preferred constructor which sets the (required) pageID + * Constructor which sets the (required) pageID. * @param pageID identifies this page including for accessing the page data. */ public MBSCustomPage(String pageID) { @@ -37,10 +37,9 @@ public abstract class MBSCustomPage implements IWizardPage } /** - * Default constructor is not recommended; pageID must be set - * so the other constructor, with pageID parameter, is preferred. - * - * @deprecated + * 0-argument constructor, which is generally what will be invoked by the standard, custom wizard + * page system. It is assumed that either statically, or in the constructor for your derived class, + * that you will set the pageID properly. * */ public MBSCustomPage() {