Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 99713cd0275ff8bd13f3f6e0a083c532c666c608 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.eclipse.papyrus.mwe2.utils.messages;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {

	private static final String BUNDLE_NAME = "org.eclipse.papyrus.mwe.utils.messages.messages"; //$NON-NLS-1$

	public static String QvtoTransformationWorkflowComponent_1;

	public static String QvtoTransformationWorkflowComponent_4;

	public static String QvtoTransformationWorkflowComponent_5;

	public static String RegisterUmlProfile_1;

	public static String RegisterUmlProfile_2;

	public static String RegisterUmlProfile_3;
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
	}
}

Back to the top