blob: 5e757508c036c57f3c14f95cbf30c245a563e64c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 IBM Corporation 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:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.wst.server.ui.internal.wizard;
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.swt.widgets.Shell;
/**
* A closable wizard dialog.
*/
public class ClosableWizardDialog extends WizardDialog {
/**
* Constructor for ClosableWizardDialog.
* @param shell
* @param wizard
*/
public ClosableWizardDialog(Shell shell, IWizard wizard) {
super(shell, wizard);
}
/**
* The Finish button has been pressed.
*/
public void finishPressed() {
super.finishPressed();
}
}