Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e71a3dc66f96b25acc45c7051816024f8d37d497 (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
50
51
52
53
54
55
56
/*****************************************************************************
 * Copyright (c) 2011 CEA LIST.
 *
 * 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:
 *		
 *		CEA LIST - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.sysml.diagram.blockdefinition.messages;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {

	public static String CreateUmlElementDialog_New_Element_Name;

	public static String InterfaceManagerDialog_CreateANewInterface;

	public static String InterfaceManagerDialog_CreateNewInterface;

	public static String InterfaceManagerDialog_SelectedTheProvidedInterfaces;

	public static String InterfaceManagerDialog_SelectionHasToBeAPackageOrAClassifier;

	public static String InterfaceManagerDialog_SelectTheParentOfThisNewInterface;

	public static String InterfaceManagerDialog_SelectTheRequiredInterfaces;

	public static String InterfaceManagerDialog_ThePortIsTypedWithAnInterfaceWarningMessage;

	public static String InterfaceManagerDialog_Title;

	public static String ManageProvidedInterfacesHandler_OK;

	public static String ManageProvidedInterfacesHandler_TheTypeOfThePortIsNotDefined;

	public static String SelectionValidated;

	public static String NoSelectionFound;

	public static String Notification_Drop_Title;
	
	public static String Notification_Drop_UMLAssociationWarning;

	static {
		NLS.initializeMessages("messages", Messages.class); //$NON-NLS-1$
	}

	private Messages() {
	}
}

Back to the top