blob: 1f93d32e4c2dd6a5ba8256702b1fe253a9a8476f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.ui.correction;
import org.eclipse.core.resources.IMarker;
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, IMarker marker) {
super(type, marker);
fRemoveImports = removeImports;
}
@Override
protected void createChange(BundleModel model) {
OrganizeManifest.organizeImportPackages(model.getBundle(), fRemoveImports);
}
@Override
public String getDescription() {
return PDEUIMessages.OrganizeImportPackageResolution_Description;
}
@Override
public String getLabel() {
return PDEUIMessages.OrganizeImportPackageResolution_Label;
}
}