tmf: extract SelectTracesOperation from SelectTracesWizardPage
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / project / wizards / Messages.java
CommitLineData
12c155f5 1/*******************************************************************************
252c602c 2 * Copyright (c) 2011, 2014 Ericsson
a94410d9 3 *
12c155f5
FC
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
a94410d9 8 *
12c155f5
FC
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
339d539c 11 * Patrick Tasse - Add support for folder elements
0e1d517e 12 * Marc-Andre Laperle - Preserve folder structure on import
7d013366 13 * Bernd Hufmann - Extract ImportTraceWizard messages
12c155f5
FC
14 *******************************************************************************/
15
2bdf0193 16package org.eclipse.tracecompass.tmf.ui.project.wizards;
12c155f5
FC
17
18import org.eclipse.osgi.util.NLS;
19
b544077e 20/**
d26274e7 21 * Message strings for TMF model handling.
a94410d9 22 *
b544077e
BH
23 * @version 1.0
24 * @author Francois Chouinard
b544077e 25 */
12c155f5
FC
26public class Messages extends NLS {
27
2bdf0193 28 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.project.wizards.messages"; //$NON-NLS-1$
12c155f5 29
d26274e7
BH
30 /**
31 * The dialog header of the new project wizard
32 */
12c155f5 33 public static String NewProjectWizard_DialogHeader;
d26274e7
BH
34 /**
35 * The dialog message of the new project wizard
36 */
12c155f5 37 public static String NewProjectWizard_DialogMessage;
d26274e7 38 /**
dc62dbee 39 * The title of the select traces wizard.
d26274e7 40 */
ac645886 41 public static String SelectTracesWizard_WindowTitle;
d26274e7 42 /**
ac645886 43 * The column header for the traces (select traces wizard page).
d26274e7 44 */
ac645886 45 public static String SelectTracesWizardPage_TraceColumnHeader;
d26274e7 46 /**
ac645886 47 * The title of select traces wizard page.
d26274e7 48 */
ac645886 49 public static String SelectTracesWizardPage_WindowTitle;
d26274e7 50 /**
ac645886 51 * The description of the select traces wizard page.
d26274e7 52 */
ac645886 53 public static String SelectTracesWizardPage_Description;
f0837186
BH
54 /**
55 * The error message when selecting of traces for an experiment fails.
f0837186
BH
56 */
57 public static String SelectTracesWizardPage_SelectionError;
f0837186
BH
58 /**
59 * The cancel message for the trace selection operation.
f0837186
BH
60 */
61 public static String SelectTracesWizardPage_SelectionOperationCancelled;
62 /**
63 * The error message title.
f0837186
BH
64 */
65 public static String SelectTracesWizardPage_InternalErrorTitle;
d26274e7 66 /**
dc62dbee
CB
67 * The error message when no name was entered in a dialog box (new trace or
68 * experiment dialog)
d26274e7 69 */
e12ecd30 70 public static String Dialog_EmptyNameError;
d26274e7
BH
71 /**
72 * The error message when name of trace or experiment already exists
73 */
12c155f5 74 public static String Dialog_ExistingNameError;
d26274e7
BH
75 /**
76 * The title of the new experiment dialog.
77 */
12c155f5 78 public static String NewExperimentDialog_DialogTitle;
d26274e7
BH
79 /**
80 * The label of the new experiment name field.
81 */
12c155f5 82 public static String NewExperimentDialog_ExperimentName;
d26274e7
BH
83 /**
84 * The title of the rename experiment dialog.
85 */
12c155f5 86 public static String RenameExperimentDialog_DialogTitle;
d26274e7
BH
87 /**
88 * The label of the field of the current experiment name.
89 */
12c155f5 90 public static String RenameExperimentDialog_ExperimentName;
d26274e7
BH
91 /**
92 * The label of the field for entering the new experiment name.
93 */
12c155f5 94 public static String RenameExperimentDialog_ExperimentNewName;
d26274e7
BH
95 /**
96 * The title of the copy experiment dialog.
97 */
12c155f5 98 public static String CopyExperimentDialog_DialogTitle;
d26274e7
BH
99 /**
100 * The label of the field of the current experiment name.
101 */
12c155f5 102 public static String CopyExperimentDialog_ExperimentName;
d26274e7
BH
103 /**
104 * The label of the field for entering the new experiment name.
105 */
12c155f5 106 public static String CopyExperimentDialog_ExperimentNewName;
d26274e7
BH
107 /**
108 * The title of the rename trace dialog.
109 */
12c155f5 110 public static String RenameTraceDialog_DialogTitle;
d26274e7
BH
111 /**
112 * The label of the field of the current trace name.
113 */
12c155f5 114 public static String RenameTraceDialog_TraceName;
d26274e7
BH
115 /**
116 * The label of the field for entering the new trace name.
117 */
12c155f5 118 public static String RenameTraceDialog_TraceNewName;
d26274e7
BH
119 /**
120 * The title of the copy trace dialog.
121 */
12c155f5 122 public static String CopyTraceDialog_DialogTitle;
d26274e7
BH
123 /**
124 * The label of the field of the current trace name.
125 */
12c155f5 126 public static String CopyTraceDialog_TraceName;
d26274e7
BH
127 /**
128 * The label of the field for entering the new trace name.
129 */
12c155f5 130 public static String CopyTraceDialog_TraceNewName;
339d539c
PT
131 /**
132 * The title of the new folder dialog.
339d539c
PT
133 */
134 public static String NewFolderDialog_DialogTitle;
135 /**
136 * The label of the new folder name field.
339d539c
PT
137 */
138 public static String NewFolderDialog_FolderName;
139 /**
140 * The title of the rename folder dialog.
339d539c
PT
141 */
142 public static String RenameFolderDialog_DialogTitle;
143 /**
144 * The label of the field of the current folder name.
339d539c
PT
145 */
146 public static String RenameFolderDialog_FolderName;
147 /**
148 * The label of the field for entering the new folder name.
339d539c
PT
149 */
150 public static String RenameFolderDialog_FolderNewName;
dc62dbee
CB
151 /**
152 * The title of the select root node wizard.
153 *
154 * The title of the select root node wizard.
155 *
156 * @since 2.0
157 *
158 */
159 public static String SelectRootNodeWizard_WindowTitle;
160
161 /**
162 * The title of the select root node wizard page.
163 *
164 * @since 2.0
165 *
166 */
167 public static String SelectRootNodeWizardPage_WindowTitle;
168
169 /**
170 * The description of the select root node wizard page.
171 *
172 * @since 2.0
173 *
174 */
175 public static String SelectRootNodeWizardPage_Description;
176 /**
177 * The column header for the traces (select root node wizard page).
178 *
179 * @since 2.0
180 */
181 public static String SelectRootNodeWizardPage_TraceColumnHeader;
12c155f5
FC
182
183 static {
e12ecd30
BH
184 // initialize resource bundle
185 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
186 }
12c155f5 187
e12ecd30
BH
188 private Messages() {
189 }
12c155f5 190}
This page took 0.12012 seconds and 5 git commands to generate.