tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / wizards / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2013 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 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.project.wizards;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Message strings for TMF model handling.
19 *
20 * @version 1.0
21 * @author Francois Chouinard
22 */
23 public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.project.wizards.messages"; //$NON-NLS-1$
26
27 /**
28 * The dialog header of the new project wizard
29 */
30 public static String NewProjectWizard_DialogHeader;
31 /**
32 * The dialog message of the new project wizard
33 */
34 public static String NewProjectWizard_DialogMessage;
35 /**
36 * The dialog title of the import trace wizard
37 */
38 public static String ImportTraceWizard_DialogTitle;
39 /**
40 * The title of the file system within the import trace wizard
41 */
42 public static String ImportTraceWizard_FileSystemTitle;
43 /**
44 * The title of the the import trace wizard page.
45 */
46 public static String ImportTraceWizard_ImportTrace;
47 /**
48 * The label of the directory location (import trace wizard)
49 */
50 public static String ImportTraceWizard_DirectoryLocation;
51 /**
52 * The title of the select trace directory dialog (import trace wizard)
53 */
54 public static String ImportTraceWizard_SelectTraceDirectoryTitle;
55 /**
56 * The message of the select trace directory dialog (import trace wizard)
57 */
58 public static String ImportTraceWizard_SelectTraceDirectoryMessage;
59 /**
60 * The title of the trace type label (import trace wizard)
61 */
62 public static String ImportTraceWizard_TraceType;
63 /**
64 * The label of the overwrite checkbox (import trace wizard)
65 */
66 public static String ImportTraceWizard_OverwriteExistingTrace;
67 /**
68 * The label of the checkbox to create a link to the trace in workspace (import trace wizard)
69 */
70 public static String ImportTraceWizard_CreateLinksInWorkspace;
71 /**
72 * The error message for invalid trace directory (import trace wizard)
73 */
74 public static String ImportTraceWizard_InvalidTraceDirectory;
75 /**
76 * The error message when a trace validation failed (import trace wizard).
77 */
78 public static String ImportTraceWizard_TraceValidationFailed;
79 /**
80 * The error message when trace source is empty (import trace wizard).
81 */
82 public static String ImportTraceWizard_SelectTraceSourceEmpty;
83 /**
84 * The error message when no trace is selected (import trace wizard).
85 */
86 public static String ImportTraceWizard_SelectTraceNoneSelected;
87 /**
88 * The error message when an error occurred during import operation.
89 */
90 public static String ImportTraceWizard_ImportProblem;
91 /**
92 * The error message if destination directory is a virtual folder.
93 */
94 public static String ImportTraceWizard_CannotImportFilesUnderAVirtualFolder;
95 /**
96 * The error message if destination directory is a virtual folder (for a link).
97 */
98 public static String ImportTraceWizard_HaveToCreateLinksUnderAVirtualFolder;
99 /**
100 * The label string of the browse button.
101 */
102 public static String ImportTraceWizard_BrowseButton;
103 /**
104 * The information label string.
105 */
106 public static String ImportTraceWizard_Information;
107 /**
108 * The title of the select traces wizard.
109 */
110 public static String SelectTracesWizard_WindowTitle;
111 /**
112 * The column header for the traces (select traces wizard page).
113 */
114 public static String SelectTracesWizardPage_TraceColumnHeader;
115 /**
116 * The title of select traces wizard page.
117 */
118 public static String SelectTracesWizardPage_WindowTitle;
119 /**
120 * The description of the select traces wizard page.
121 */
122 public static String SelectTracesWizardPage_Description;
123 /**
124 * The error message when no name was entered in a dialog box (new trace or experiment dialog)
125 */
126 public static String Dialog_EmptyNameError;
127 /**
128 * The error message when name of trace or experiment already exists
129 */
130 public static String Dialog_ExistingNameError;
131 /**
132 * The title of the new experiment dialog.
133 */
134 public static String NewExperimentDialog_DialogTitle;
135 /**
136 * The label of the new experiment name field.
137 */
138 public static String NewExperimentDialog_ExperimentName;
139 /**
140 * The title of the rename experiment dialog.
141 */
142 public static String RenameExperimentDialog_DialogTitle;
143 /**
144 * The label of the field of the current experiment name.
145 */
146 public static String RenameExperimentDialog_ExperimentName;
147 /**
148 * The label of the field for entering the new experiment name.
149 */
150 public static String RenameExperimentDialog_ExperimentNewName;
151 /**
152 * The title of the copy experiment dialog.
153 */
154 public static String CopyExperimentDialog_DialogTitle;
155 /**
156 * The label of the field of the current experiment name.
157 */
158 public static String CopyExperimentDialog_ExperimentName;
159 /**
160 * The label of the field for entering the new experiment name.
161 */
162 public static String CopyExperimentDialog_ExperimentNewName;
163 /**
164 * The title of the rename trace dialog.
165 */
166 public static String RenameTraceDialog_DialogTitle;
167 /**
168 * The label of the field of the current trace name.
169 */
170 public static String RenameTraceDialog_TraceName;
171 /**
172 * The label of the field for entering the new trace name.
173 */
174 public static String RenameTraceDialog_TraceNewName;
175 /**
176 * The title of the copy trace dialog.
177 */
178 public static String CopyTraceDialog_DialogTitle;
179 /**
180 * The label of the field of the current trace name.
181 */
182 public static String CopyTraceDialog_TraceName;
183 /**
184 * The label of the field for entering the new trace name.
185 */
186 public static String CopyTraceDialog_TraceNewName;
187
188 static {
189 // initialize resource bundle
190 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
191 }
192
193 private Messages() {
194 }
195 }
This page took 0.048313 seconds and 6 git commands to generate.