tmf: Introduce "External Analyses" and "Reports" project elements
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / project / model / Messages.java
CommitLineData
4962833a 1/*******************************************************************************
281def42 2 * Copyright (c) 2013, 2016 Ericsson
4962833a
JCK
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
89730b51 11 * Patrick Tasse - Add support for source location
4962833a
JCK
12 *******************************************************************************/
13
2bdf0193 14package org.eclipse.tracecompass.tmf.ui.project.model;
4962833a
JCK
15
16import org.eclipse.osgi.util.NLS;
17
18/**
19 * Message strings for TMF model handling.
20 *
21 * @author Jean-Christian Kouamé
4962833a
JCK
22 */
23public class Messages extends NLS {
24
2bdf0193 25 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.project.model.messages"; //$NON-NLS-1$
4962833a 26
82bdc349
GB
27 /**
28 * The category of the analysis helper properties
29 *
30 * @since 2.0
31 */
32 public static String TmfAnalysisElement_HelperProperties;
33
34 /**
35 * The category of the analysis properties
36 *
37 * @since 2.0
38 */
39 public static String TmfAnalysisElement_AnalysisProperties;
40
ae09c4ad 41 /** Instantiate analysis message box title */
c068a752
GB
42 public static String TmfAnalysisElement_InstantiateAnalysis;
43
ae09c4ad 44 /** The message when analysis view is not available */
c068a752 45 public static String TmfAnalysisViewOutput_ViewUnavailable;
ae09c4ad 46 /** Analysis view title */
8f5221c2
GB
47 public static String TmfAnalysisViewOutput_Title;
48
ae09c4ad 49 /** Error message when closing editor */
8f5221c2
GB
50 public static String TmfCommonProjectElement_ErrorClosingEditor;
51
ae09c4ad 52 /** Error message when refreshing persistent property */
8f5221c2
GB
53 public static String TmfCommonProjectElement_ErrorRefreshingProperty;
54
ae09c4ad 55 /** Error message when instantiating trace */
8f5221c2 56 public static String TmfExperimentElement_ErrorInstantiatingTrace;
ae09c4ad 57 /** Experiment text */
8f5221c2 58 public static String TmfExperimentElement_TypeName;
c068a752 59
4962833a
JCK
60 /** The category of the resource properties */
61 public static String TmfTraceElement_ResourceProperties;
62
63 /** The category of the trace properties */
64 public static String TmfTraceElement_TraceProperties;
65
66 /** The descriptor for the name property */
67 public static String TmfTraceElement_Name;
68
69 /** The descriptor for the path property */
70 public static String TmfTraceElement_Path;
71
72 /** The descriptor for the location properties */
73 public static String TmfTraceElement_Location;
74
75 /** The descriptor for the event type property */
76 public static String TmfTraceElement_EventType;
77
89730b51 78 /** The descriptor for the linked property */
4962833a 79 public static String TmfTraceElement_IsLinked;
89730b51 80
ae09c4ad 81 /** The descriptor for the source location property */
89730b51
PT
82 public static String TmfTraceElement_SourceLocation;
83
ae09c4ad 84 /** The descriptor for the time offset property */
6b44794a
MK
85 public static String TmfTraceElement_TimeOffset;
86
ae09c4ad 87 /** The descriptor for the last modified property */
b75a5a1b
PT
88 public static String TmfTraceElement_LastModified;
89
ae09c4ad 90 /** The descriptor for the size property */
b75a5a1b
PT
91 public static String TmfTraceElement_Size;
92
ae09c4ad 93 /** The format string for the size property of a file */
b75a5a1b
PT
94 public static String TmfTraceElement_FileSizeString;
95
ae09c4ad 96 /** The format string for the size property of a folder */
b75a5a1b
PT
97 public static String TmfTraceElement_FolderSizeString;
98
ae09c4ad 99 /** The format string for the size property of a folder with too many members */
b75a5a1b
PT
100 public static String TmfTraceElement_FolderSizeOverflowString;
101
ae09c4ad 102 /** Trace text */
8f5221c2 103 public static String TmfTraceElement_TypeName;
5c727157
AM
104
105 /** Name of the "Views" element
106 * @since 2.0*/
107 public static String TmfViewsElement_Name;
ddfa2689
AM
108
109 /** Name of the element "On-demand Analyses"
110 * @since 2.0*/
111 public static String TmfOnDemandAnalysesElement_Name;
112
113 /** Name of the element "Reports"
114 * @since 2.0*/
115 public static String TmfReportsElement_Name;
5c727157 116
043ad4df 117 /**
ae09c4ad 118 * The title for the select trace type dialog */
043ad4df 119 public static String TmfTraceType_SelectTraceType;
4962833a 120
ae09c4ad 121 /** Error opening a trace or experiment */
9d2e08b9 122 public static String TmfOpenTraceHelper_ErrorOpeningElement;
76fccfb0
MK
123 /** Could not link trace */
124 public static String TmfOpenTraceHelper_LinkFailed;
ae09c4ad 125 /** Open trace or experiment */
9d2e08b9 126 public static String TmfOpenTraceHelper_OpenElement;
ae09c4ad 127 /** No trace or experiment type */
9d2e08b9 128 public static String TmfOpenTraceHelper_NoTraceOrExperimentType;
76fccfb0
MK
129 /** No trace type */
130 public static String TmfOpenTraceHelper_NoTraceType;
ae09c4ad 131 /** Error opening trace or experiment */
9d2e08b9 132 public static String TmfOpenTraceHelper_ErrorElement;
76fccfb0
MK
133 /** Init error */
134 public static String TmfOpenTraceHelper_InitError;
ae09c4ad 135 /** Trace not found */
9d2e08b9
GB
136 public static String TmfOpenTraceHelper_TraceNotFound;
137
76fccfb0 138
4962833a
JCK
139 static {
140 // initialize resource bundle
141 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
142 }
143
144 private Messages() {
145 }
146}
This page took 0.17286 seconds and 5 git commands to generate.