blob: a5bc02807f7fdf8b9fff3d436a0b672ee78f11c3 [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.text.build.*;
import org.eclipse.pde.internal.ui.PDEUIMessages;
public class AddBuildEntryResolution extends BuildEntryMarkerResolution {
public AddBuildEntryResolution(int type, IMarker marker) {
super(type, marker);
}
public AddBuildEntryResolution(int type, IMarker marker, String entry, String value) {
super(type, marker);
fEntry = entry;
fToken = value;
}
@Override
public String getLabel() {
return NLS.bind(PDEUIMessages.AddBuildEntryResolution_add, fToken, fEntry);
}
@Override
protected void createChange(Build build) {
try {
BuildModel buildModel = build.getModel();
if (buildModel.isStale()) {
buildModel.reconciled(buildModel.getDocument());
}
BuildEntry buildEntry = (BuildEntry) build.getEntry(fEntry);
if (buildEntry == null)
buildEntry = new BuildEntry(fEntry, buildModel);
if (fToken != null)
buildEntry.addToken(fToken);
} catch (CoreException e) {
}
}
@Override
public IMarker[] findOtherMarkers(IMarker[] markers) {
return new IMarker[0];
}
}