blob: 450f856bdedca61609ed4110b217a4309a04dad7 [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.osgi.util.NLS;
import org.eclipse.pde.internal.core.text.bundle.*;
import org.eclipse.pde.internal.ui.PDEUIMessages;
import org.osgi.framework.Constants;
public class RemoveImportPackageResolution extends AbstractManifestMarkerResolution {
private String fPkgName;
public RemoveImportPackageResolution(int type, String packageName, IMarker marker) {
super(type, marker);
fPkgName = packageName;
}
@Override
protected void createChange(BundleModel model) {
fPkgName = marker.getAttribute("packageName", (String) null); //$NON-NLS-1$
Bundle bundle = (Bundle) model.getBundle();
ImportPackageHeader header = (ImportPackageHeader) bundle.getManifestHeader(Constants.IMPORT_PACKAGE);
if (header != null)
header.removePackage(fPkgName);
}
@Override
public String getDescription() {
return NLS.bind(PDEUIMessages.RemoveImportPkgResolution_description, fPkgName);
}
@Override
public String getLabel() {
return NLS.bind(PDEUIMessages.RemoveImportPkgResolution_label, fPkgName);
}
}