blob: 6950e55a858261dc7c382373853abf5c86c9467e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 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.ptp.services.ui.wizards;
import org.eclipse.jface.wizard.WizardPage;
import org.eclipse.swt.widgets.Composite;
public abstract class ServiceProviderConfigurationWizardPage extends WizardPage {
private final ServiceProviderConfigurationWizard fWizard;
/**
* @param wizard
* @param pageName
*/
public ServiceProviderConfigurationWizardPage(ServiceProviderConfigurationWizard wizard, String pageName) {
super(pageName);
fWizard = wizard;
}
/* (non-Javadoc)
* @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
*/
public abstract void createControl(Composite parent);
/**
* @return
*/
protected ServiceProviderConfigurationWizard getConfigurationWizard() {
return fWizard;
}
}