blob: 46effbde1b1569ff511cd70da332eef41dac8c50 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 Primetals Technologies Germany GmbH
*
* 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:
* Daniel Lindhuber
* - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.fordiac.ide.model.ui;
import org.eclipse.osgi.util.NLS;
@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.model.ui.messages"; //$NON-NLS-1$
public static String DataTypeDropdown_Type_Selection;
public static String DataTypeDropdown_Select_Type;
public static String DataTypeDropdown_Elementary_Types;
public static String DataTypeDropdown_STRUCT_Types;
public static String OpenEditorAction_text;
public static String OpenEditorProvider_OpenWithMenu_label;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
// empty private constructor
}
}