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
1 /*******************************************************************************
2 * Copyright (c) 2011, 2012 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 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.loader;
12
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * Messages related to the sequence diagram loader
17 *
18 * @version 1.0
19 * @author Bernd Hufmann
20 */
21 public class Messages extends NLS {
22 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.loader.messages"; //$NON-NLS-1$
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;
29
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.031255 seconds and 5 git commands to generate.