blob: 81f34fcd334e8b2c1bd13e5ca3a66c6ad2c35583 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2010 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.equinox.internal.p2.ui.dialogs;
import org.eclipse.equinox.p2.metadata.IUpdateDescriptor;
import org.eclipse.equinox.internal.p2.ui.ProvUIMessages;
import org.eclipse.equinox.internal.p2.ui.model.IUElementListRoot;
import org.eclipse.equinox.p2.metadata.IInstallableUnit;
import org.eclipse.equinox.p2.operations.UpdateOperation;
import org.eclipse.equinox.p2.ui.ProvisioningUI;
public class UpdateWizardPage extends SizeComputingWizardPage {
public UpdateWizardPage(ProvisioningUI ui, ProvisioningOperationWizard wizard, IUElementListRoot root, UpdateOperation operation) {
super(ui, wizard, root, operation);
setTitle(ProvUIMessages.UpdateWizardPage_Title);
setDescription(ProvUIMessages.UpdateWizardPage_Description);
}
protected String getIUDescription(IInstallableUnit iu) {
if (iu != null) {
IUpdateDescriptor updateDescriptor = iu.getUpdateDescriptor();
if (updateDescriptor != null && updateDescriptor.getDescription() != null && updateDescriptor.getDescription().length() > 0)
return updateDescriptor.getDescription();
}
return super.getIUDescription(iu);
}
protected String getOperationLabel() {
return ProvUIMessages.UpdateIUOperationLabel;
}
protected String getOperationTaskName() {
return ProvUIMessages.UpdateIUOperationTask;
}
}