blob: 8b3b9222c04bef5942994078a8be15d29b4089b9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 SAP AG 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:
* Kaloyan Raev (SAP AG) - initial API and implementation
*******************************************************************************/
package org.eclipse.libra.facet;
import org.eclipse.osgi.util.NLS;
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.libra.facet.messages"; //$NON-NLS-1$
public static String OSGiBundleFacetInstallConfig_EmptySymbolicName;
public static String OSGiBundleFacetInstallConfig_EmptyVersion;
public static String OSGiBundleFacetUninstallStrategy_FacetAndPluginNatureAndManifest;
public static String OSGiBundleFacetUninstallStrategy_FacetAndPluginNatureButNotManifest;
public static String OSGiBundleFacetUninstallStrategy_FacetOnly;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}