Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Lorenzo2016-05-11 11:24:47 +0000
committerGerrit Code Review @ Eclipse.org2016-05-26 08:41:24 +0000
commitc35076dc3e1ee6ab19c2daa6f71d990d1b798450 (patch)
tree28704c2bb96bb475150e30c48d3061f6fa5a9ddd /plugins/infra/services
parente6450f0d3364d2ee0e84a35e5216d67d9af731bf (diff)
downloadorg.eclipse.papyrus-c35076dc3e1ee6ab19c2daa6f71d990d1b798450.tar.gz
org.eclipse.papyrus-c35076dc3e1ee6ab19c2daa6f71d990d1b798450.tar.xz
org.eclipse.papyrus-c35076dc3e1ee6ab19c2daa6f71d990d1b798450.zip
bug 492522: [All Diagrams] Delete from model on comment links does not
work (does a delete from diagram) bug 439317: [All Diagrams] Delete from model on contraint links and constraints specification links does not work (do a delete from diagram) new deprecated class : org.eclipse.papyrus.uml.diagram.common.editpolicies.ContextLinkSemanticEditPolicy I remove it from the installed editpolicy for Class, Profile and StateMachine diagrams - add tests about comment link deletion for ClassDiagram, CompositeDiagram and ComponentDiagram Change-Id: I0be833fe18d751bf4873b6e09962b8878b3d010c Signed-off-by: Vincent Lorenzo <vincent.lorenzo@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.java7
1 files changed, 6 insertions, 1 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 b5429f9cff4..c9201f557eb 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
@@ -10,7 +10,7 @@
* CEA LIST - Initial API and implementation
* Christian W. Damus - bug 465899
* Bonnabesse Fanch (ALL4TEC) fanch.bonnabesse@alltec.net - Bug 476872
- *
+ * Vincent Lorenzo - bug 492522
*****************************************************************************/
package org.eclipse.papyrus.infra.services.edit.utils;
@@ -111,6 +111,11 @@ public interface RequestParameterConstants {
public final static String NAME_TO_SET = "nameToSet"; //$NON-NLS-1$
/**
+ * the ID to store the visual id of the view on which we are working, the value must be a string
+ */
+ public final static String VIEW_VISUAL_ID = "VISUAL_ID";//$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"; //$NON-NLS-1$

Back to the top