tmf: Offset traces ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / model / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 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 * Patrick Tasse - Add support for source location
12 *******************************************************************************/
13
14 package org.eclipse.linuxtools.tmf.ui.project.model;
15
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * Message strings for TMF model handling.
20 *
21 * @author Jean-Christian Kouamé
22 * @since 2.1
23 */
24 public class Messages extends NLS {
25
26 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.project.model.messages"; //$NON-NLS-1$
27
28 /** Instantiate analysis message box title
29 * @since 3.0*/
30 public static String TmfAnalysisElement_InstantiateAnalysis;
31
32 /** The message when analysis view is not available
33 * @since 3.0*/
34 public static String TmfAnalysisViewOutput_ViewUnavailable;
35 /** Analysis view title
36 * @since 3.0 */
37 public static String TmfAnalysisViewOutput_Title;
38
39 /** Error message when closing editor
40 * @since 3.0 */
41 public static String TmfCommonProjectElement_ErrorClosingEditor;
42
43 /** Error message when refreshing persistent property
44 * @since 3.0 */
45 public static String TmfCommonProjectElement_ErrorRefreshingProperty;
46
47 /** Error message when instantiating trace
48 * @since 3.0 */
49 public static String TmfExperimentElement_ErrorInstantiatingTrace;
50 /** Experiment text
51 * @since 3.0*/
52 public static String TmfExperimentElement_TypeName;
53
54 /** The category of the resource properties */
55 public static String TmfTraceElement_ResourceProperties;
56
57 /** The category of the trace properties */
58 public static String TmfTraceElement_TraceProperties;
59
60 /** The descriptor for the name property */
61 public static String TmfTraceElement_Name;
62
63 /** The descriptor for the path property */
64 public static String TmfTraceElement_Path;
65
66 /** The descriptor for the location properties */
67 public static String TmfTraceElement_Location;
68
69 /** The descriptor for the event type property */
70 public static String TmfTraceElement_EventType;
71
72 /** The descriptor for the linked property */
73 public static String TmfTraceElement_IsLinked;
74
75 /** The descriptor for the source location property
76 * @since 3.0*/
77 public static String TmfTraceElement_SourceLocation;
78
79 /** The descriptor for the time offset property
80 * @since 3.2*/
81 public static String TmfTraceElement_TimeOffset;
82
83 /** Trace text
84 * @since 3.0*/
85 public static String TmfTraceElement_TypeName;
86 /**
87 * The title for the select trace type dialog
88 * @since 2.2
89 * */
90 public static String TmfTraceType_SelectTraceType;
91
92 /** Error opening a trace or experiment
93 * @since 3.0*/
94 public static String TmfOpenTraceHelper_ErrorOpeningElement;
95 /** Could not link trace */
96 public static String TmfOpenTraceHelper_LinkFailed;
97 /** No trace type match */
98 public static String TmfOpenTraceHelper_NoTraceTypeMatch;
99 /** Open trace or experiment
100 * @since 3.0*/
101 public static String TmfOpenTraceHelper_OpenElement;
102 /** Reduce was too efficient, no candidates found! */
103 public static String TmfOpenTraceHelper_ReduceError;
104 /** No trace or experiment type
105 * @since 3.0*/
106 public static String TmfOpenTraceHelper_NoTraceOrExperimentType;
107 /** No trace type */
108 public static String TmfOpenTraceHelper_NoTraceType;
109 /** Error opening trace or experiment
110 * @since 3.0*/
111 public static String TmfOpenTraceHelper_ErrorElement;
112 /** Init error */
113 public static String TmfOpenTraceHelper_InitError;
114 /** Trace not found
115 * @since 3.0*/
116 public static String TmfOpenTraceHelper_TraceNotFound;
117
118
119 static {
120 // initialize resource bundle
121 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
122 }
123
124 private Messages() {
125 }
126 }
This page took 0.03525 seconds and 6 git commands to generate.