blob: b586c302a8c0b7e225310485c6b138a771eec244 [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.core.resources.IMarker;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.osgi.util.NLS;
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 AddBuildEntryResolution extends BuildEntryMarkerResolution {
public AddBuildEntryResolution(int type, IMarker marker) {
super(type, marker);
}
public String getLabel() {
return NLS.bind(PDEUIMessages.AddBuildEntryResolution_add, fToken, fEntry);
}
protected void createChange(Build build) {
try {
BuildEntry buildEntry = (BuildEntry) build.getEntry(fEntry);
if (buildEntry == null)
buildEntry = new BuildEntry(fEntry, build.getModel());
buildEntry.addToken(fToken);
} catch (CoreException e) {
}
}
}