ss: Move plugins to Trace Compass namespace
[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 /** The descriptor for the last modified property
84 * @since 3.2 */
85 public static String TmfTraceElement_LastModified;
86
87 /** The descriptor for the size property
88 * @since 3.2 */
89 public static String TmfTraceElement_Size;
90
91 /** The format string for the size property of a file
92 * @since 3.2 */
93 public static String TmfTraceElement_FileSizeString;
94
95 /** The format string for the size property of a folder
96 * @since 3.2 */
97 public static String TmfTraceElement_FolderSizeString;
98
99 /** The format string for the size property of a folder with too many members
100 * @since 3.2 */
101 public static String TmfTraceElement_FolderSizeOverflowString;
102
103 /** Trace text
104 * @since 3.0*/
105 public static String TmfTraceElement_TypeName;
106 /**
107 * The title for the select trace type dialog
108 * @since 2.2
109 * */
110 public static String TmfTraceType_SelectTraceType;
111
112 /** Error opening a trace or experiment
113 * @since 3.0*/
114 public static String TmfOpenTraceHelper_ErrorOpeningElement;
115 /** Could not link trace */
116 public static String TmfOpenTraceHelper_LinkFailed;
117 /** No trace type match */
118 public static String TmfOpenTraceHelper_NoTraceTypeMatch;
119 /** Open trace or experiment
120 * @since 3.0*/
121 public static String TmfOpenTraceHelper_OpenElement;
122 /** Reduce was too efficient, no candidates found! */
123 public static String TmfOpenTraceHelper_ReduceError;
124 /** No trace or experiment type
125 * @since 3.0*/
126 public static String TmfOpenTraceHelper_NoTraceOrExperimentType;
127 /** No trace type */
128 public static String TmfOpenTraceHelper_NoTraceType;
129 /** Error opening trace or experiment
130 * @since 3.0*/
131 public static String TmfOpenTraceHelper_ErrorElement;
132 /** Init error */
133 public static String TmfOpenTraceHelper_InitError;
134 /** Trace not found
135 * @since 3.0*/
136 public static String TmfOpenTraceHelper_TraceNotFound;
137
138
139 static {
140 // initialize resource bundle
141 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
142 }
143
144 private Messages() {
145 }
146 }
This page took 0.036292 seconds and 5 git commands to generate.