lttng: Update copyright headers
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / loader / Messages.java
CommitLineData
73005152 1/*******************************************************************************
df0b8ff4 2 * Copyright (c) 2011, 2012 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 *******************************************************************************/
df0b8ff4 11package org.eclipse.linuxtools.tmf.ui.views.uml2sd.loader;
73005152
BH
12
13import org.eclipse.osgi.util.NLS;
14
013a5f1c
AM
15/**
16 * Messages related to the sequence diagram loader
17 *
18 * @version 1.0
19 * @author Bernd Hufmann
20 */
a55887ca 21@SuppressWarnings("javadoc")
73005152 22public class Messages extends NLS {
df0b8ff4 23 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.loader.messages"; //$NON-NLS-1$
73005152
BH
24 public static String TmfUml2SDSyncLoader_ViewName;
25 public static String TmfUml2SDSyncLoader_CategoryLifeline;
26 public static String TmfUml2SDSyncLoader_CategoryMessage;
27 public static String TmfUml2SDSyncLoader_FrameName;
28 public static String TmfUml2SDSyncLoader_SearchJobDescrition;
29 public static String TmfUml2SDSyncLoader_SearchNotFound;
013a5f1c 30
9a43af17
BH
31 /** @since 2.0 */
32 public static String TmfUml2SDSyncLoader_EventTypeSend;
33 /** @since 2.0 */
34 public static String TmfUml2SDSyncLoader_EventTypeReceive;
35 /** @since 2.0 */
36 public static String TmfUml2SDSyncLoader_FieldSender;
37 /** @since 2.0 */
38 public static String TmfUml2SDSyncLoader_FieldReceiver;
39 /** @since 2.0 */
40 public static String TmfUml2SDSyncLoader_FieldSignal;
73005152
BH
41 static {
42 // initialize resource bundle
43 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
44 }
45
46 private Messages() {
47 }
48}
This page took 0.034432 seconds and 5 git commands to generate.