blob: 3a5642179a0169d932a1ead8e12046eb987043ac [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 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.pde.internal.ui.correction;
import org.eclipse.pde.internal.core.text.bundle.BundleModel;
import org.eclipse.pde.internal.ui.PDEUIMessages;
import org.eclipse.pde.internal.ui.wizards.tools.OrganizeManifest;
public class OrganizeImportPackageResolution extends AbstractManifestMarkerResolution {
private boolean fRemoveImports;
public OrganizeImportPackageResolution(int type, boolean removeImports) {
super(type);
fRemoveImports = removeImports;
}
protected void createChange(BundleModel model) {
OrganizeManifest.organizeImportPackages(model.getBundle(), fRemoveImports);
}
public String getDescription() {
return PDEUIMessages.OrganizeImportPackageResolution_Description;
}
public String getLabel() {
return PDEUIMessages.OrganizeImportPackageResolution_Label;
}
}