mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 02:06:01 +02:00
fix for 146254 by Beth Tibbitts
This commit is contained in:
parent
077fbb67ae
commit
82bd8cc025
1 changed files with 20 additions and 1 deletions
|
@ -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
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -7,6 +7,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Texas Instruments - initial API and implementation
|
* Texas Instruments - initial API and implementation
|
||||||
|
* IBM Corporation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.cdt.managedbuilder.ui.wizards;
|
package org.eclipse.cdt.managedbuilder.ui.wizards;
|
||||||
|
@ -27,6 +28,24 @@ public abstract class MBSCustomPage implements IWizardPage
|
||||||
protected String pageID = null;
|
protected String pageID = null;
|
||||||
protected IWizard wizard = 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)
|
/* (non-Javadoc)
|
||||||
* @see org.eclipse.jface.wizard.IWizardPage#isCustomPageComplete()
|
* @see org.eclipse.jface.wizard.IWizardPage#isCustomPageComplete()
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue