blob: 63202d929ae3aa4afe1a9252f8a271e3407679d3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 Sybase, Inc. 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Sybase, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.common.ui.internal.dialogs;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Shell;
public class CommonWizardDialog extends WizardDialog {
public CommonWizardDialog(Shell parentShell, IWizard newWizard) {
super(parentShell, newWizard);
}
protected void createButtonsForButtonBar(Composite parent) {
super.createButtonsForButtonBar(parent);
IWizard wizard = getWizard();
if (!wizard.needsPreviousAndNextButtons()) {
getButton(IDialogConstants.FINISH_ID).setText(
IDialogConstants.OK_LABEL);
}
}
}