blob: 02a22736c9c9100dbb7437a3bd131f0fc808be90 [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.pde.internal.core.ICoreConstants;
import org.eclipse.pde.internal.core.text.bundle.BundleModel;
import org.eclipse.pde.internal.ui.PDEUIMessages;
public class CreateJREBundleHeaderResolution extends AbstractManifestMarkerResolution {
public CreateJREBundleHeaderResolution(int type) {
super(type);
}
public String getDescription() {
return PDEUIMessages.CreateJREBundleHeaderResolution_desc;
}
public String getLabel() {
return PDEUIMessages.CreateJREBundleHeaderResolution_label;
}
protected void createChange(BundleModel model) {
model.getBundle().setHeader(ICoreConstants.ECLIPSE_JREBUNDLE, Boolean.toString(true));
}
}