tmf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / loader / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2013 Ericsson.
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 *******************************************************************************/
11
12 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.loader;
13
14 import org.eclipse.osgi.util.NLS;
15
16 /**
17 * Messages related to the sequence diagram loader
18 *
19 * @version 1.0
20 * @author Bernd Hufmann
21 */
22 @SuppressWarnings("javadoc")
23 public class Messages extends NLS {
24 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.loader.messages"; //$NON-NLS-1$
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;
31
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;
42 static {
43 // initialize resource bundle
44 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
45 }
46
47 private Messages() {
48 }
49 }
This page took 0.033011 seconds and 5 git commands to generate.