blob: 80b533d010e500da7cd1074a6bea612af13306ef [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.core.runtime.CoreException;
import org.eclipse.osgi.util.NLS;
import org.eclipse.pde.internal.core.builders.PDEMarkerFactory;
import org.eclipse.pde.internal.core.text.build.Build;
import org.eclipse.pde.internal.core.text.build.BuildEntry;
import org.eclipse.pde.internal.ui.PDEUIMessages;
public class RemoveBuildEntryResolution extends BuildEntryMarkerResolution {
public RemoveBuildEntryResolution(int type, IMarker marker) {
super(type, marker);
}
@Override
public String getLabel() {
if (fToken == null)
return NLS.bind(PDEUIMessages.RemoveBuildEntryResolution_removeEntry, fEntry);
return NLS.bind(PDEUIMessages.RemoveBuildEntryResolution_removeToken, fToken, fEntry);
}
@Override
protected void createChange(Build build) {
try {
fEntry = (String) marker.getAttribute(PDEMarkerFactory.BK_BUILD_ENTRY);
fToken = (String) marker.getAttribute(PDEMarkerFactory.BK_BUILD_TOKEN);
} catch (CoreException e) {
}
try {
BuildEntry buildEntry = (BuildEntry) build.getEntry(fEntry);
if (buildEntry == null)
return;
if (fToken == null)
build.remove(buildEntry);
else {
buildEntry.removeToken(fToken);
if (buildEntry.getTokens().length == 0) {
build.remove(buildEntry);
}
}
} catch (CoreException e) {
}
}
}