blob: aec2b7216848764252d73bd32608657da9b94403 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.jface.tests.wizards;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Shell;
/**
* The purpose of this class is to expose WizardDialog internals for testing
*/
public class TheTestWizardDialog extends WizardDialog {
/**
* @param parentShell
* @param newWizard
*/
public TheTestWizardDialog(Shell parentShell, IWizard newWizard) {
super(parentShell, newWizard);
setBlockOnOpen(false);
}
public Button getFinishedButton() {
return getButton(IDialogConstants.FINISH_ID);
}
public Button getCancelButton() {
return getButton(IDialogConstants.CANCEL_ID);
}
public Button getBackButton() {
return getButton(IDialogConstants.BACK_ID);
}
public Button getNextButton() {
return getButton(IDialogConstants.NEXT_ID);
}
public void finishPressed() {
super.finishPressed();
}
public void cancelPressed() {
super.cancelPressed();
}
public void backPressed() {
super.backPressed();
}
public void nextPressed() {
super.nextPressed();
}
public void buttonPressed(int buttonId) {
super.buttonPressed(buttonId);
}
}