Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 60fb0cbcd77360ea3780c64ad92843d242cb002a (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
/*****************************************************************************
 * Copyright (c) 2009 CEA
 *
 *    
 * 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.diagram.sequence.util;

/**
 * Constants used in the sequence diagram
 */
public interface SequenceRequestConstant {

	/** A constant representing the container of an interactionFragment. It can be an Interaction or an InteractionOperand */
	public static final String INTERACTIONFRAGMENT_CONTAINER = "InteractionFragment Container"; //$NON-NLS-1$

	/** key for a set of covered InteractionFragment which needs to be moved inside a new container. */
	public static final String COVERED_INTERACTIONFRAGMENTS = "Covered InteractionFragments"; //$NON-NLS-1$

	public static final String SOURCE_MODEL_CONTAINER = "Source model container"; //$NON-NLS-1$

	public static final String TARGET_MODEL_CONTAINER = "Target model container"; //$NON-NLS-1$

	/** A key used in the creation of a CORegion to identify the lifeline graphically containing the CoRegion */
	public static final String LIFELINE_GRAPHICAL_CONTAINER = "Lifeline graphical container"; //$NON-NLS-1$ 

	/** The occurrence specification(s) which are the nearest from a creation request */
	public static final String NEAREST_OCCURRENCE_SPECIFICATION = "Nearest occurrence specification"; //$NON-NLS-1$

	/** The location of the occurrence specification which is the nearest from a creation request */
	public static final String OCCURRENCE_SPECIFICATION_LOCATION = "Nearest occurrence specification location"; //$NON-NLS-1$

	/** The occurrence specification(s) which are the nearest from a creation request (2nd end of creation) */
	public static final String NEAREST_OCCURRENCE_SPECIFICATION_2 = "Nearest occurrence specification (end)"; //$NON-NLS-1$

	/** The location of the occurrence specification which is the nearest from a creation request (2nd end of creation) */
	public static final String OCCURRENCE_SPECIFICATION_LOCATION_2 = "Nearest occurrence specification location (end)"; //$NON-NLS-1$

	/** Tag signifying that the edit parts must not be moved when an occurrence specification is moved (to avoid loop in chain effects) */
	public static final String DO_NOT_MOVE_EDIT_PARTS = "Do not move these edit parts"; //$NON-NLS-1$

	/** The location of the connection start creation request */
	public static final String SOURCE_LOCATION_DATA = "Location of connection source point"; //$NON-NLS-1$

	/** update connectable element reference */
	public static final String CONNECTABLE_ELEMENT = "Connectable Element"; //$NON-NLS-1$

	/** Direct edit request after creation. */
	public static final String DIRECT_EDIT_AFTER_CREATION = "Direct Edit After Creation"; //$NON-NLS-1$
}

Back to the top