tmf: Fix TmfProjectModelElement.equals()
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / project / model / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2016 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.tracecompass.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 */
23 public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.project.model.messages"; //$NON-NLS-1$
26
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
41 /** Instantiate analysis message box title */
42 public static String TmfAnalysisElement_InstantiateAnalysis;
43
44 /** The message when analysis view is not available */
45 public static String TmfAnalysisViewOutput_ViewUnavailable;
46 /** Analysis view title */
47 public static String TmfAnalysisViewOutput_Title;
48
49 /** Error message when closing editor */
50 public static String TmfCommonProjectElement_ErrorClosingEditor;
51
52 /** Error message when refreshing persistent property */
53 public static String TmfCommonProjectElement_ErrorRefreshingProperty;
54
55 /** Error message when instantiating trace */
56 public static String TmfExperimentElement_ErrorInstantiatingTrace;
57 /** Experiment text */
58 public static String TmfExperimentElement_TypeName;
59
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
78 /** The descriptor for the linked property */
79 public static String TmfTraceElement_IsLinked;
80
81 /** The descriptor for the source location property */
82 public static String TmfTraceElement_SourceLocation;
83
84 /** The descriptor for the time offset property */
85 public static String TmfTraceElement_TimeOffset;
86
87 /** The descriptor for the last modified property */
88 public static String TmfTraceElement_LastModified;
89
90 /** The descriptor for the size property */
91 public static String TmfTraceElement_Size;
92
93 /** The format string for the size property of a file */
94 public static String TmfTraceElement_FileSizeString;
95
96 /** The format string for the size property of a folder */
97 public static String TmfTraceElement_FolderSizeString;
98
99 /** The format string for the size property of a folder with too many members */
100 public static String TmfTraceElement_FolderSizeOverflowString;
101
102 /** Trace text */
103 public static String TmfTraceElement_TypeName;
104 /**
105 * The title for the select trace type dialog */
106 public static String TmfTraceType_SelectTraceType;
107
108 /** Error opening a trace or experiment */
109 public static String TmfOpenTraceHelper_ErrorOpeningElement;
110 /** Could not link trace */
111 public static String TmfOpenTraceHelper_LinkFailed;
112 /** Open trace or experiment */
113 public static String TmfOpenTraceHelper_OpenElement;
114 /** No trace or experiment type */
115 public static String TmfOpenTraceHelper_NoTraceOrExperimentType;
116 /** No trace type */
117 public static String TmfOpenTraceHelper_NoTraceType;
118 /** Error opening trace or experiment */
119 public static String TmfOpenTraceHelper_ErrorElement;
120 /** Init error */
121 public static String TmfOpenTraceHelper_InitError;
122 /** Trace not found */
123 public static String TmfOpenTraceHelper_TraceNotFound;
124
125
126 static {
127 // initialize resource bundle
128 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
129 }
130
131 private Messages() {
132 }
133 }
This page took 0.034582 seconds and 5 git commands to generate.