blob: 428cb34d0f94647ce57824cdb3b8eb629651a96d [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.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 OptionalImportPackageResolution extends AbstractManifestMarkerResolution {
private String fPackageName;
public OptionalImportPackageResolution(int type, String packageName) {
super(type);
fPackageName = packageName;
}
protected void createChange(BundleModel model) {
Bundle bundle = (Bundle) model.getBundle();
ImportPackageHeader header = (ImportPackageHeader) bundle.getManifestHeader(Constants.IMPORT_PACKAGE);
if (header != null) {
ImportPackageObject pkg = header.getPackage(fPackageName);
if (pkg != null)
pkg.setOptional(true);
}
}
public String getDescription() {
return NLS.bind(PDEUIMessages.OptionalImportPkgResolution_description, fPackageName);
}
public String getLabel() {
return NLS.bind(PDEUIMessages.OptionalImportPkgResolution_label, fPackageName);
}
}