blob: 9489c325c0717b63ac804aa8cd13143719ee02c7 [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.ibundle.IBundle;
import org.eclipse.pde.internal.core.ibundle.IManifestHeader;
import org.eclipse.pde.internal.core.text.bundle.*;
import org.eclipse.pde.internal.ui.PDEUIMessages;
import org.osgi.framework.Constants;
public class UnsupportedSingletonDirectiveResolution extends AbstractManifestMarkerResolution {
public UnsupportedSingletonDirectiveResolution(int type, IMarker marker) {
super(type, marker);
}
@Override
public String getDescription() {
return PDEUIMessages.RevertUnsupportSingletonResolution_desc;
}
@Override
public String getLabel() {
return PDEUIMessages.RevertUnsupportSingletonResolution_desc;
}
@Override
protected void createChange(BundleModel model) {
IBundle bundle = model.getBundle();
if (bundle instanceof Bundle) {
Bundle bun = (Bundle) bundle;
IManifestHeader header = bun.getManifestHeader(Constants.BUNDLE_SYMBOLICNAME);
if (header instanceof BundleSymbolicNameHeader) {
((BundleSymbolicNameHeader) header).fixUnsupportedDirective();
}
}
}
}