blob: e02e37ee372801d4f9b416829d57003dadc5f66d [file] [log] [blame]
/**
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Thales Corporate Services S.A.S - initial API and implementation
*
*/
package org.eclipse.egf.common.l10n;
import org.eclipse.osgi.util.NLS;
public class EGFCommonMessages {
private static final String BUNDLE_NAME = "org.eclipse.egf.common.l10n.messages"; //$NON-NLS-1$
private EGFCommonMessages() {
// Do not instantiate
}
static {
// load message values from bundle file
NLS.initializeMessages(BUNDLE_NAME, EGFCommonMessages.class);
}
public static String URI_errorInstance;
public static String Exception_unexpectedException;
public static String JavaProject_AnalysisFailure;
public static String TypeClassHelper_classHierachy_JobName;
public static String Wrong_Class_Message;
public static String Wrong_Class_Sub_Type_Message;
public static String Bundle_Message;
public static String Extension_Point_Message;
public static String Attribute_Message;
public static String Duplicate_Element_Message;
public static String Type_mismatch_Message;
public static String Missing_Element_Message;
public static String No_associated_project;
}