Move alltests plugin to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / loader / Messages.java
CommitLineData
73005152 1/*******************************************************************************
c8422608 2 * Copyright (c) 2011, 2013 Ericsson.
73005152
BH
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Bernd Hufmann - Initial API and implementation
10 *******************************************************************************/
c8422608 11
df0b8ff4 12package org.eclipse.linuxtools.tmf.ui.views.uml2sd.loader;
73005152
BH
13
14import org.eclipse.osgi.util.NLS;
15
013a5f1c
AM
16/**
17 * Messages related to the sequence diagram loader
18 *
19 * @version 1.0
20 * @author Bernd Hufmann
21 */
a55887ca 22@SuppressWarnings("javadoc")
73005152 23public class Messages extends NLS {
df0b8ff4 24 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.loader.messages"; //$NON-NLS-1$
73005152
BH
25 public static String TmfUml2SDSyncLoader_ViewName;
26 public static String TmfUml2SDSyncLoader_CategoryLifeline;
27 public static String TmfUml2SDSyncLoader_CategoryMessage;
28 public static String TmfUml2SDSyncLoader_FrameName;
29 public static String TmfUml2SDSyncLoader_SearchJobDescrition;
30 public static String TmfUml2SDSyncLoader_SearchNotFound;
013a5f1c 31
9a43af17
BH
32 /** @since 2.0 */
33 public static String TmfUml2SDSyncLoader_EventTypeSend;
34 /** @since 2.0 */
35 public static String TmfUml2SDSyncLoader_EventTypeReceive;
36 /** @since 2.0 */
37 public static String TmfUml2SDSyncLoader_FieldSender;
38 /** @since 2.0 */
39 public static String TmfUml2SDSyncLoader_FieldReceiver;
40 /** @since 2.0 */
41 public static String TmfUml2SDSyncLoader_FieldSignal;
73005152
BH
42 static {
43 // initialize resource bundle
44 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
45 }
46
47 private Messages() {
48 }
49}
This page took 0.056443 seconds and 5 git commands to generate.