tmf: add title to trace type selection dialog
[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 2.1
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 * The title for the select trace type dialog
49 * @since 2.2
50 * */
51 public static String TmfTraceType_SelectTraceType;
52
53 /** Error opening a trace */
54 public static String TmfOpenTraceHelper_ErrorOpeningTrace;
55 /** Error opening an experiment */
56 public static String TmfOpenTraceHelper_ErrorOpeningExperiment;
57 /** Could not link trace */
58 public static String TmfOpenTraceHelper_LinkFailed;
59 /** No trace type match */
60 public static String TmfOpenTraceHelper_NoTraceTypeMatch;
61 /** Open Trace*/
62 public static String TmfOpenTraceHelper_OpenTrace;
63 /** Open Experiment*/
64 public static String TmfOpenTraceHelper_OpenExperiment;
65 /** Reduce was too efficient, no candidates found! */
66 public static String TmfOpenTraceHelper_ReduceError;
67 /** No trace type */
68 public static String TmfOpenTraceHelper_NoTraceType;
69 /** Error opening trace*/
70 public static String TmfOpenTraceHelper_ErrorTrace;
71 /** Error opening experiment */
72 public static String TmfOpenTraceHelper_ErrorExperiment;
73 /** Init error */
74 public static String TmfOpenTraceHelper_InitError;
75
76 static {
77 // initialize resource bundle
78 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
79 }
80
81 private Messages() {
82 }
83 }
This page took 0.06867 seconds and 5 git commands to generate.