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