Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / 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.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 /** Instantiate analysis message box title */
28 public static String TmfAnalysisElement_InstantiateAnalysis;
29
30 /** The message when analysis view is not available */
31 public static String TmfAnalysisViewOutput_ViewUnavailable;
32 /** Analysis view title */
33 public static String TmfAnalysisViewOutput_Title;
34
35 /** Error message when closing editor */
36 public static String TmfCommonProjectElement_ErrorClosingEditor;
37
38 /** Error message when refreshing persistent property */
39 public static String TmfCommonProjectElement_ErrorRefreshingProperty;
40
41 /** Error message when instantiating trace */
42 public static String TmfExperimentElement_ErrorInstantiatingTrace;
43 /** Experiment text */
44 public static String TmfExperimentElement_TypeName;
45
46 /** The category of the resource properties */
47 public static String TmfTraceElement_ResourceProperties;
48
49 /** The category of the trace properties */
50 public static String TmfTraceElement_TraceProperties;
51
52 /** The descriptor for the name property */
53 public static String TmfTraceElement_Name;
54
55 /** The descriptor for the path property */
56 public static String TmfTraceElement_Path;
57
58 /** The descriptor for the location properties */
59 public static String TmfTraceElement_Location;
60
61 /** The descriptor for the event type property */
62 public static String TmfTraceElement_EventType;
63
64 /** The descriptor for the linked property */
65 public static String TmfTraceElement_IsLinked;
66
67 /** The descriptor for the source location property */
68 public static String TmfTraceElement_SourceLocation;
69
70 /** The descriptor for the time offset property */
71 public static String TmfTraceElement_TimeOffset;
72
73 /** The descriptor for the last modified property */
74 public static String TmfTraceElement_LastModified;
75
76 /** The descriptor for the size property */
77 public static String TmfTraceElement_Size;
78
79 /** The format string for the size property of a file */
80 public static String TmfTraceElement_FileSizeString;
81
82 /** The format string for the size property of a folder */
83 public static String TmfTraceElement_FolderSizeString;
84
85 /** The format string for the size property of a folder with too many members */
86 public static String TmfTraceElement_FolderSizeOverflowString;
87
88 /** Trace text */
89 public static String TmfTraceElement_TypeName;
90 /**
91 * The title for the select trace type dialog */
92 public static String TmfTraceType_SelectTraceType;
93
94 /** Error opening a trace or experiment */
95 public static String TmfOpenTraceHelper_ErrorOpeningElement;
96 /** Could not link trace */
97 public static String TmfOpenTraceHelper_LinkFailed;
98 /** No trace type match */
99 public static String TmfOpenTraceHelper_NoTraceTypeMatch;
100 /** Open trace or experiment */
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 public static String TmfOpenTraceHelper_NoTraceOrExperimentType;
106 /** No trace type */
107 public static String TmfOpenTraceHelper_NoTraceType;
108 /** Error opening trace or experiment */
109 public static String TmfOpenTraceHelper_ErrorElement;
110 /** Init error */
111 public static String TmfOpenTraceHelper_InitError;
112 /** Trace not found */
113 public static String TmfOpenTraceHelper_TraceNotFound;
114
115
116 static {
117 // initialize resource bundle
118 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
119 }
120
121 private Messages() {
122 }
123 }
This page took 0.038641 seconds and 5 git commands to generate.