blob: 1326ce3c07daa98e61e15db5db1f205befbddd5f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009, 2015, 2016 Profactor GmbH, fortiss 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:
* Gerhard Ebenhofer, Alois Zoitl
* - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.fordiac.ide.fbtypeeditor.network;
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.fbtypeeditor.network.messages"; //$NON-NLS-1$
/** The Composite network editor_ labe l_ composite editor. */
public static String CompositeNetworkEditor_LABEL_CompositeEditor;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
// empty private constructor
}
}