Merge branch 'master' into luna
[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 title of the select traces wizard.
37 */
38 public static String SelectTracesWizard_WindowTitle;
39 /**
40 * The column header for the traces (select traces wizard page).
41 */
42 public static String SelectTracesWizardPage_TraceColumnHeader;
43 /**
44 * The title of select traces wizard page.
45 */
46 public static String SelectTracesWizardPage_WindowTitle;
47 /**
48 * The description of the select traces wizard page.
49 */
50 public static String SelectTracesWizardPage_Description;
51 /**
52 * The error message when no name was entered in a dialog box (new trace or
53 * experiment dialog)
54 */
55 public static String Dialog_EmptyNameError;
56 /**
57 * The error message when name of trace or experiment already exists
58 */
59 public static String Dialog_ExistingNameError;
60 /**
61 * The title of the new experiment dialog.
62 */
63 public static String NewExperimentDialog_DialogTitle;
64 /**
65 * The label of the new experiment name field.
66 */
67 public static String NewExperimentDialog_ExperimentName;
68 /**
69 * The title of the rename experiment dialog.
70 */
71 public static String RenameExperimentDialog_DialogTitle;
72 /**
73 * The label of the field of the current experiment name.
74 */
75 public static String RenameExperimentDialog_ExperimentName;
76 /**
77 * The label of the field for entering the new experiment name.
78 */
79 public static String RenameExperimentDialog_ExperimentNewName;
80 /**
81 * The title of the copy experiment dialog.
82 */
83 public static String CopyExperimentDialog_DialogTitle;
84 /**
85 * The label of the field of the current experiment name.
86 */
87 public static String CopyExperimentDialog_ExperimentName;
88 /**
89 * The label of the field for entering the new experiment name.
90 */
91 public static String CopyExperimentDialog_ExperimentNewName;
92 /**
93 * The title of the rename trace dialog.
94 */
95 public static String RenameTraceDialog_DialogTitle;
96 /**
97 * The label of the field of the current trace name.
98 */
99 public static String RenameTraceDialog_TraceName;
100 /**
101 * The label of the field for entering the new trace name.
102 */
103 public static String RenameTraceDialog_TraceNewName;
104 /**
105 * The title of the copy trace dialog.
106 */
107 public static String CopyTraceDialog_DialogTitle;
108 /**
109 * The label of the field of the current trace name.
110 */
111 public static String CopyTraceDialog_TraceName;
112 /**
113 * The label of the field for entering the new trace name.
114 */
115 public static String CopyTraceDialog_TraceNewName;
116
117 static {
118 // initialize resource bundle
119 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
120 }
121
122 private Messages() {
123 }
124 }
This page took 0.038261 seconds and 6 git commands to generate.