blob: 724249a8d5697e746974cff6e977f7d5320b0798 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Profactor GmbH
* 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:
* Gerhard Ebenhofer
* - initial implementation
* Andrea Zoitl
* - externalized translatable strings
*******************************************************************************/
package org.eclipse.fordiac.ide.fbtypeeditor.fbtester;
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.fbtypeeditor.fbtester.messages"; //$NON-NLS-1$
public static String FBTester_AddTest;
public static String FBTester_CreateDataConnectionFailed;
public static String FBTester_CreateEventConnection;
public static String FBTester_CreateEventConnectionFailed;
public static String FBTester_CreateFBInstance;
public static String FBTester_CreateFBInstanceFailed;
public static String FBTester_CreateResourceFailed;
public static String FBTester_CreateResourceInstance;
public static String FBTester_CreateDataConnection;
public static String FBTester_DeleteFB;
public static String FBTester_DeleteTest;
public static String FBTester_DisconnectFailed;
public static String FBTester_ExpectedEvents;
public static String FBTester_FBTester;
public static String FBTester_Kill;
public static String FBTester_KillFB;
public static String FBTester_NewTest;
public static String FBTester_RunselectedTests;
public static String FBTester_SaveTestData;
public static String FBTester_Start;
public static String FBTester_StartFB;
public static String FBTester_StartingResourceFailed;
public static String FBTester_Stop;
public static String FBTester_TestConfiguration;
public static String FBTester_WriteFBParameterFailed;
public static String FBTester_WriteParameter;
public static String FBTester_WriteResourceParameterFailed;
public static String FORTERemoteTester_ElementSkipped;
public static String FORTERemoteTester_FBCanNotBeCleanedBecauseOfTheFollowingError;
public static String FORTERemoteTester_FBCanNotBeTestedBecauseOfTheFollowingError;
public static String FORTERemoteTester_ForceResponse;
public static String FORTERemoteTester_IPAddress;
public static String FORTERemoteTester_RuntimePort;
public static String FORTERemoteTester_StartTestingFB;
public static String FORTERemoteTester_StopTestingFB;
public static String FORTERemoteTester_ThreadInterrupted;
public static String TestdataFactoryImpl_TheClassIsNotAValidClassifier;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
// empty private constructor
}
}