Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFanch BONNABESSE2015-10-13 09:47:12 +0000
committerGerrit Code Review @ Eclipse.org2015-10-22 10:00:42 +0000
commit9a68f8ac945c3a067d53a6093a64f86f833e0500 (patch)
tree188877a28a351cbb37da1c49fa9a46d51312ed2e /plugins/infra/services/org.eclipse.papyrus.infra.services.edit
parentd1323ce742e0b0182b67f3e42057f80807031a5f (diff)
downloadorg.eclipse.papyrus-9a68f8ac945c3a067d53a6093a64f86f833e0500.tar.gz
org.eclipse.papyrus-9a68f8ac945c3a067d53a6093a64f86f833e0500.tar.xz
org.eclipse.papyrus-9a68f8ac945c3a067d53a6093a64f86f833e0500.zip
Bug 476872: [Class diagram] Moving an enum literal shall update the
corresponding figure(s) https://bugs.eclipse.org/bugs/show_bug.cgi?id=476872 Change-Id: I64ae968c2f47fa5883078c1846a7996667fcac68 Signed-off-by: Fanch BONNABESSE <fanch.bonnabesse@all4tec.net>
Diffstat (limited to 'plugins/infra/services/org.eclipse.papyrus.infra.services.edit')
-rw-r--r--plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/utils/RequestParameterConstants.java15
1 files changed, 13 insertions, 2 deletions
diff --git a/plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/utils/RequestParameterConstants.java b/plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/utils/RequestParameterConstants.java
index e76851a7cff..d54e724c9c6 100644
--- a/plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/utils/RequestParameterConstants.java
+++ b/plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/utils/RequestParameterConstants.java
@@ -9,6 +9,7 @@
* Contributors:
* CEA LIST - Initial API and implementation
* Christian W. Damus - bug 465899
+ * Bonnabesse Fanch (ALL4TEC) fanch.bonnabesse@alltec.net - Bug 476872
*
*****************************************************************************/
package org.eclipse.papyrus.infra.services.edit.utils;
@@ -107,12 +108,12 @@ public interface RequestParameterConstants {
/**
* the ID to store the name to be set for the new element.
*/
- public final static String NAME_TO_SET = "nameToSet";
+ public final static String NAME_TO_SET = "nameToSet"; //$NON-NLS-1$
/**
* this constant is used to precise if it is needed to launch UI during the edition of an element
*/
- public static String USE_GUI = "USE_GUI";
+ public static String USE_GUI = "USE_GUI"; //$NON-NLS-1$
/**
* A boolean-valued parameter for {@link CreateRelationshipRequest} that indicates
@@ -136,6 +137,16 @@ public interface RequestParameterConstants {
*/
public static final String AFFECTS_TARGET = "papyrus.affectsTarget"; //$NON-NLS-1$
+ /**
+ * Constant used to indicate that the action is done on the diagram.
+ */
+ public static final String TYPE_MOVING_DIAGRAM = "TYPE_MOVING_DIAGRAM"; //$NON-NLS-1$
+
+ /**
+ * Constant used to indicate where the action is done.
+ */
+ public static final String TYPE_MOVING = "TYPE_MOVING"; //$NON-NLS-1$
+
//
// Nested types
//

Back to the top