Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Le Menez2017-05-23 08:14:39 +0000
committervincent lorenzo2017-05-27 14:41:46 +0000
commit9e8c2e7a952ecec82bb1840cf8b08523be8c7303 (patch)
treeb34feb624097af88420549308b8b7990e1d5f885 /plugins/infra/services
parentee1a6a1f3fc9477ca12fec27f8ea5880a586ac6a (diff)
downloadorg.eclipse.papyrus-9e8c2e7a952ecec82bb1840cf8b08523be8c7303.tar.gz
org.eclipse.papyrus-9e8c2e7a952ecec82bb1840cf8b08523be8c7303.tar.xz
org.eclipse.papyrus-9e8c2e7a952ecec82bb1840cf8b08523be8c7303.zip
Bug 514866 - [Class diagram] Moving property from a DataType to another one doesn't work
- Filter the views to be removed and Refresh the attribute compartments after the move action Change-Id: Ib2c9d92343a760fe8534fd32017aec9a3c3f19c5 Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
Diffstat (limited to 'plugins/infra/services')
-rw-r--r--plugins/infra/services/org.eclipse.papyrus.infra.services.edit/src/org/eclipse/papyrus/infra/services/edit/utils/RequestParameterConstants.java5
1 files changed, 5 insertions, 0 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 c9201f557eb..d23f2c524a8 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
@@ -151,6 +151,11 @@ public interface RequestParameterConstants {
* Constant used to indicate where the action is done.
*/
public static final String TYPE_MOVING = "TYPE_MOVING"; //$NON-NLS-1$
+
+ /**
+ * Store the view on which we are working.
+ */
+ public final static String AFFECTED_VIEW = "AFFECTED_VIEW";//$NON-NLS-1$
/**
* this constant is used to precise if it is needed to make the editdialog cancellable or not

Back to the top