Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.common/src-common-gmf/org/eclipse/papyrus/gmf/diagram/common/edit/policy/ILinkMappingHelper.java')
-rw-r--r--plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.common/src-common-gmf/org/eclipse/papyrus/gmf/diagram/common/edit/policy/ILinkMappingHelper.java37
1 files changed, 19 insertions, 18 deletions
diff --git a/plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.common/src-common-gmf/org/eclipse/papyrus/gmf/diagram/common/edit/policy/ILinkMappingHelper.java b/plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.common/src-common-gmf/org/eclipse/papyrus/gmf/diagram/common/edit/policy/ILinkMappingHelper.java
index d3a8c0fe667..cfa839dc4bb 100644
--- a/plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.common/src-common-gmf/org/eclipse/papyrus/gmf/diagram/common/edit/policy/ILinkMappingHelper.java
+++ b/plugins/sysml/diagram/org.eclipse.papyrus.sysml.diagram.common/src-common-gmf/org/eclipse/papyrus/gmf/diagram/common/edit/policy/ILinkMappingHelper.java
@@ -21,23 +21,24 @@ import org.eclipse.emf.ecore.EObject;
/**
* Interface to map links at semantic level.
*/
-public interface ILinkMappingHelper {
+@Deprecated
+public interface ILinkMappingHelper extends org.eclipse.papyrus.uml.diagram.common.helper.ILinkMappingHelper{
- /**
- * Get the sources.
- *
- * @param link
- * the link.
- * @return the sources.
- */
- public Collection<?> getSource(EObject link);
-
- /**
- * Get the targets.
- *
- * @param link
- * the link.
- * @return the targets.
- */
- public Collection<?> getTarget(EObject link);
+// /**
+// * Get the sources.
+// *
+// * @param link
+// * the link.
+// * @return the sources.
+// */
+// public Collection<?> getSource(EObject link);
+//
+// /**
+// * Get the targets.
+// *
+// * @param link
+// * the link.
+// * @return the targets.
+// */
+// public Collection<?> getTarget(EObject link);
}

Back to the top