Skip to main content
summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorChris Recoskie2006-06-12 13:27:58 +0000
committerChris Recoskie2006-06-12 13:27:58 +0000
commit82bd8cc02506823dd1f69a121d16359290673e44 (patch)
tree9cc264178ccb51d25bf024e39ff00b198de760a3 /build
parent077fbb67ae1499b0843456b47f121370f616af22 (diff)
downloadorg.eclipse.cdt-82bd8cc02506823dd1f69a121d16359290673e44.tar.gz
org.eclipse.cdt-82bd8cc02506823dd1f69a121d16359290673e44.tar.xz
org.eclipse.cdt-82bd8cc02506823dd1f69a121d16359290673e44.zip
fix for 146254 by Beth Tibbitts
Diffstat (limited to 'build')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/MBSCustomPage.java21
1 files changed, 20 insertions, 1 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 54807776f71..8a0bc794971 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005 Texas Instruments Incorporated and others.
+ * Copyright (c) 2005, 2006 Texas Instruments Incorporated and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -7,6 +7,7 @@
*
* Contributors:
* Texas Instruments - initial API and implementation
+ * IBM Corporation
*******************************************************************************/
package org.eclipse.cdt.managedbuilder.ui.wizards;
@@ -27,6 +28,24 @@ public abstract class MBSCustomPage implements IWizardPage
protected String pageID = null;
protected IWizard wizard = null;
+ /**
+ * Preferred constructor which sets the (required) pageID
+ * @param pageID identifies this page including for accessing the page data.
+ */
+ public MBSCustomPage(String pageID) {
+ this.pageID=pageID;
+ }
+
+ /**
+ * Default constructor is not recommended; pageID must be set
+ * so the other constructor, with pageID parameter, is preferred.
+ *
+ * @deprecated
+ *
+ */
+ public MBSCustomPage() {
+ }
+
/* (non-Javadoc)
* @see org.eclipse.jface.wizard.IWizardPage#isCustomPageComplete()
*/

Back to the top