blob: 0c346ec2584a6b51a8f9562f39e215fc9b02f2bd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 Andrea Zoitl
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Andrea Zoitl
* - Externalized all translatable strings
*******************************************************************************/
package org.eclipse.fordiac.ide.export;
import org.eclipse.osgi.util.NLS;
/**
* The Class Messages.
*/
@SuppressWarnings("squid:S3008") // tell sonar the java naming convention does not make sense for this class
public final class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.fordiac.ide.export.messages"; //$NON-NLS-1$
public static String ExportTemplate_ExportTemplate;
public static String TemplateExportFilter_ErrorDuringTemplateGeneration;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
// empty private constructor
}
}