1 | package de.uka.ipd.sdq.pcm.dialogs; |
2 | |
3 | import org.eclipse.osgi.util.NLS; |
4 | |
5 | /** |
6 | * Common class for all message bundle classes. |
7 | * |
8 | * @author Roman Andrej |
9 | */ |
10 | public class Messages extends NLS { |
11 | |
12 | /** |
13 | * Initialize the class with the values from the specified message bundle. |
14 | */ |
15 | static { |
16 | NLS.initializeMessages("messages", Messages.class); //$NON-NLS-1$ |
17 | } |
18 | |
19 | /** |
20 | * Define the Title,Message and ErrorMassage of DataTypeDialog |
21 | */ |
22 | public static String DataTypeDialog_NewTitle; |
23 | public static String DataTypeDialog_EditTitle; |
24 | public static String DataTypeDialog_ShellNewTitle; |
25 | public static String DataTypeDialog_ShellEditTitle; |
26 | public static String DataTypeDialog_ErrorMsgName; |
27 | public static String DataTypeDialog_ErrorMsgInner; |
28 | public static String DataTypeDialog_ErrorMsgInnerName; |
29 | public static String DataTypeDialog_ErrorMsgInnerType; |
30 | |
31 | /** |
32 | * Define the Title,Message and ErrorMassage of ParametersDialog |
33 | */ |
34 | public static String ParametersDialog_Title; |
35 | public static String ParametersDialog_ErrorMsgInner; |
36 | } |