Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 088164099d9fab099e608fd6d1916032f0652bd1 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*****************************************************************************
 * Copyright (c) 2010 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.diagram.common.groups;

import org.eclipse.osgi.util.NLS;

/**
 * The class handling messages for the group framework
 */
public class Messages extends NLS {


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

	/**
	 * Private constructor
	 */
	private Messages() {
	}

	/**
	 * Main message in ChooseElementsCreator
	 */
	public static String ChooseContainedElementsCreator_Message;

	/**
	 * Message to check/uncheck all checkboxes in ChooseElementsCreator
	 */
	public static String ChooseContainedElementsCreator_CheckAll;

	/**
	 * Message to run the action in ChooseContainedElementsCreator
	 */
	public static String ChooseContainedElementsCreator_Run;

	/**
	 * Main message in ChooseContainingGroupCreator
	 */
	public static String ChooseContainingGroupCreator_Message;

	/**
	 * Message to introduce a contained element in ChooseContainingGroupCreator
	 */
	public static String ChooseContainingGroupCreator_Contained;

	/**
	 * Message to run the action in ChooseContainingGroupCreator
	 */
	public static String ChooseContainingGroupCreator_Run;

	/**
	 * Message displayed when the user is asked to choose between graphical parents
	 */
	public static String ChooseParentNotificationCommand_ChooseGraphicalParent;

	/**
	 * Message display on the Choose graphical children notification
	 * e.g "Change graphical parent"
	 */
	public static String ChooseParentNotificationCommand_ChooseGraphicalParentMessage;

	/**
	 * Label of the Choose Children Notification
	 */
	public static String ChooseChildrenICompositeCreator_ChooseChildren;

	/**
	 * Message display to choose graphical children
	 */
	public static String ChooseParentNotificationCommand_ChooseGraphicalChildrenMessage;

	/**
	 * Message displayed when the user is asked to choose between model parents (This message is a warnig)
	 */
	public static String ChooseParentNotificationCommand_ChooseModelParent;

	/**
	 * Command label of HandleGraphicalChildrenMovingOut
	 */
	public static String CommandsUtils_HandleGraphicalChildrenMovingOut_Label;



}

Back to the top