Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f8cd37c29ff3acf70046257ca922998824723f8d (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*****************************************************************************
 * Copyright (c) 2011 Atos Origin.
 *
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   Atos Origin - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.controlmode.profile;

import org.eclipse.osgi.util.NLS;

/**
 * This class handles messages internationalization.
 *
 * @author vhemery
 */
public class Messages extends NLS {

	private static final String BUNDLE_NAME = "org.eclipse.papyrus.uml.controlmode.profile.messages"; //$NON-NLS-1$

	/** Message for switching the loading strategy when controlled package is not loaded */
	public static String switch_loading_strategy;

	/** Error message when controlled package is read-only */
	public static String error_readonly;

	/** Error message when an error occurs during validation */
	public static String error_during_validation;

	/** Error message when trying to delete a duplicated profile application */
	public static String warning_cannot_delete_duplicated;

	/** Error message when trying to delete a duplicated profile application */
	public static String warning_cannot_delete_duplicated_alt;

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

	private Messages() {
	}
}

Back to the top