Merge branch 'master' into lttng-luna
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / model / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Jean-Christian Kouamé - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.project.model;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Message strings for TMF model handling.
19 *
20 * @author Jean-Christian Kouamé
21 * @since 3.0
22 */
23 public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.project.model.messages"; //$NON-NLS-1$
26
27 /** The category of the resource properties */
28 public static String TmfTraceElement_ResourceProperties;
29
30 /** The category of the trace properties */
31 public static String TmfTraceElement_TraceProperties;
32
33 /** The descriptor for the name property */
34 public static String TmfTraceElement_Name;
35
36 /** The descriptor for the path property */
37 public static String TmfTraceElement_Path;
38
39 /** The descriptor for the location properties */
40 public static String TmfTraceElement_Location;
41
42 /** The descriptor for the event type property */
43 public static String TmfTraceElement_EventType;
44
45 /** The description for the linked property */
46 public static String TmfTraceElement_IsLinked;
47
48 static {
49 // initialize resource bundle
50 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
51 }
52
53 private Messages() {
54 }
55 }
This page took 0.037557 seconds and 6 git commands to generate.