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/uml/diagram/org.eclipse.papyrus.uml.diagram.common
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/uml/diagram/org.eclipse.papyrus.uml.diagram.common')
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/editpolicies/ContextLinkSemanticEditPolicy.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/editpolicies/ContextLinkSemanticEditPolicy.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/editpolicies/ContextLinkSemanticEditPolicy.java
index 126841516d4..3efbaecff07 100644
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/editpolicies/ContextLinkSemanticEditPolicy.java
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/editpolicies/ContextLinkSemanticEditPolicy.java
@@ -8,7 +8,7 @@
*
* Contributors:
* CEA LIST - Initial API and implementation
- *
+ * Vincent Lorenzo - bug 493317 (deprecated)
*****************************************************************************/
package org.eclipse.papyrus.uml.diagram.common.editpolicies;
@@ -31,6 +31,8 @@ import org.eclipse.uml2.uml.Constraint;
/**
* Custom context link semantic edit policy that provides removing a context from constrained element
* during delete/hide context link command
+ *
+ * @deprecated since 2.0, the work is now done by an advice helper in the oep.uml.service.types
*/
public class ContextLinkSemanticEditPolicy extends DefaultSemanticEditPolicy {

Back to the top