blob: 45c498053d6f4d69b964d3f2609fef49c7f8f71f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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
* Genuitec, LLC - added license support
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ui.dialogs;
import org.eclipse.equinox.internal.provisional.p2.director.ProvisioningPlan;
import org.eclipse.equinox.internal.provisional.p2.metadata.IInstallableUnit;
import org.eclipse.equinox.internal.provisional.p2.ui.policy.LicenseManager;
import org.eclipse.jface.wizard.IWizardPage;
import org.eclipse.jface.wizard.Wizard;
/**
* @since 3.4
*/
public abstract class UpdateOrInstallWizard extends Wizard {
UpdateOrInstallWizardPage mainPage;
AcceptLicensesWizardPage licensePage;
protected String profileId;
protected IInstallableUnit[] ius;
protected LicenseManager licenseManager;
public UpdateOrInstallWizard(String profileId, IInstallableUnit[] ius, LicenseManager licenseManager) {
super();
setForcePreviousAndNextButtons(true);
setNeedsProgressMonitor(true);
this.profileId = profileId;
this.ius = ius;
this.licenseManager = licenseManager;
}
public void addPages() {
addPage(mainPage = createMainPage());
addPage(licensePage = createLicensesPage());
}
protected abstract AcceptLicensesWizardPage createLicensesPage();
/*
* (non-Javadoc)
* @see org.eclipse.jface.wizard.Wizard#getNextPage(org.eclipse.jface.wizard.IWizardPage)
*/
public IWizardPage getNextPage(IWizardPage page) {
if (page == mainPage && licensePage.hasLicensesToAccept())
return licensePage;
return null;
}
public boolean performFinish() {
licensePage.performFinish();
return mainPage.performFinish();
}
public void planChanged(IInstallableUnit[] selectedIUs, ProvisioningPlan plan) {
this.ius = selectedIUs;
licensePage.update(selectedIUs, plan);
}
protected abstract UpdateOrInstallWizardPage createMainPage();
}