tmf: Update Javadoc throughout tmf.ui
[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 */
73005152 21public class Messages extends NLS {
df0b8ff4 22 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.loader.messages"; //$NON-NLS-1$
73005152
BH
23 public static String TmfUml2SDSyncLoader_ViewName;
24 public static String TmfUml2SDSyncLoader_CategoryLifeline;
25 public static String TmfUml2SDSyncLoader_CategoryMessage;
26 public static String TmfUml2SDSyncLoader_FrameName;
27 public static String TmfUml2SDSyncLoader_SearchJobDescrition;
28 public static String TmfUml2SDSyncLoader_SearchNotFound;
013a5f1c 29
73005152
BH
30 public static String TmfUml2SDSyncCloader_EventTypeSend;
31 public static String TmfUml2SDSyncCloader_EventTypeReceive;
32 public static String TmfUml2SDSyncCloader_FieldSender;
33 public static String TmfUml2SDSyncCloader_FieldReceiver;
34 public static String TmfUml2SDSyncCloader_FieldSignal;
35 static {
36 // initialize resource bundle
37 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
38 }
39
40 private Messages() {
41 }
42}
This page took 0.029808 seconds and 5 git commands to generate.