TMF: Fix a bug in UI when refreshing analysis elements under traces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / model / Messages.java
CommitLineData
4962833a
JCK
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
13package org.eclipse.linuxtools.tmf.ui.project.model;
14
15import 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 */
23public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.project.model.messages"; //$NON-NLS-1$
26
c4767854
AM
27 /** Instantiate analysis message box title
28 * @since 3.0*/
c068a752
GB
29 public static String TmfAnalysisElement_InstantiateAnalysis;
30
c4767854
AM
31 /** The message when analysis view is not available
32 * @since 3.0*/
c068a752
GB
33 public static String TmfAnalysisViewOutput_ViewUnavailable;
34
4962833a
JCK
35 /** The category of the resource properties */
36 public static String TmfTraceElement_ResourceProperties;
37
38 /** The category of the trace properties */
39 public static String TmfTraceElement_TraceProperties;
40
41 /** The descriptor for the name property */
42 public static String TmfTraceElement_Name;
43
44 /** The descriptor for the path property */
45 public static String TmfTraceElement_Path;
46
47 /** The descriptor for the location properties */
48 public static String TmfTraceElement_Location;
49
50 /** The descriptor for the event type property */
51 public static String TmfTraceElement_EventType;
52
53 /** The description for the linked property */
54 public static String TmfTraceElement_IsLinked;
043ad4df
MK
55 /**
56 * The title for the select trace type dialog
57 * @since 2.2
58 * */
59 public static String TmfTraceType_SelectTraceType;
4962833a 60
76fccfb0
MK
61 /** Error opening a trace */
62 public static String TmfOpenTraceHelper_ErrorOpeningTrace;
67c53011
PT
63 /** Error opening an experiment */
64 public static String TmfOpenTraceHelper_ErrorOpeningExperiment;
76fccfb0
MK
65 /** Could not link trace */
66 public static String TmfOpenTraceHelper_LinkFailed;
67 /** No trace type match */
68 public static String TmfOpenTraceHelper_NoTraceTypeMatch;
69 /** Open Trace*/
70 public static String TmfOpenTraceHelper_OpenTrace;
67c53011
PT
71 /** Open Experiment*/
72 public static String TmfOpenTraceHelper_OpenExperiment;
76fccfb0
MK
73 /** Reduce was too efficient, no candidates found! */
74 public static String TmfOpenTraceHelper_ReduceError;
75 /** No trace type */
76 public static String TmfOpenTraceHelper_NoTraceType;
67c53011
PT
77 /** Error opening trace*/
78 public static String TmfOpenTraceHelper_ErrorTrace;
79 /** Error opening experiment */
80 public static String TmfOpenTraceHelper_ErrorExperiment;
76fccfb0
MK
81 /** Init error */
82 public static String TmfOpenTraceHelper_InitError;
76fccfb0 83
c4767854
AM
84 /** Analysis view title
85 * @since 3.0*/
c068a752
GB
86 public static String TmfAnalysisViewOutput_Title;
87
4962833a
JCK
88 static {
89 // initialize resource bundle
90 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
91 }
92
93 private Messages() {
94 }
95}
This page took 0.035852 seconds and 5 git commands to generate.