blob: 02117d8ff686bb7339e39526808fa07e9f6a2a3d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2014 Ericsson.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Bernd Hufmann - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.tmf.ui.views.uml2sd.loader;
import org.eclipse.osgi.util.NLS;
/**
* Messages related to the sequence diagram loader
*
* @author Bernd Hufmann
*/
@SuppressWarnings("javadoc")
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.views.uml2sd.loader.messages"; //$NON-NLS-1$
public static String TmfUml2SDSyncLoader_ViewName;
public static String TmfUml2SDSyncLoader_CategoryLifeline;
public static String TmfUml2SDSyncLoader_CategoryMessage;
public static String TmfUml2SDSyncLoader_FrameName;
public static String TmfUml2SDSyncLoader_SearchJobDescrition;
public static String TmfUml2SDSyncLoader_SearchNotFound;
public static String TmfUml2SDSyncLoader_EventTypeSend;
public static String TmfUml2SDSyncLoader_EventTypeReceive;
public static String TmfUml2SDSyncLoader_FieldSender;
public static String TmfUml2SDSyncLoader_FieldReceiver;
public static String TmfUml2SDSyncLoader_FieldSignal;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}