Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Lehmann2010-11-29 14:39:56 +0000
committerPascal Lehmann2010-11-29 14:39:56 +0000
commite991182586061e98c12024ddd02a661a22795616 (patch)
tree6995fc95e3cd3c6673bfbf88ca18518551766f22 /plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/revision/delta
parent82665d1b8c9818a2535deda8e84576cf120393b2 (diff)
downloadcdo-e991182586061e98c12024ddd02a661a22795616.tar.gz
cdo-e991182586061e98c12024ddd02a661a22795616.tar.xz
cdo-e991182586061e98c12024ddd02a661a22795616.zip
[330903] Improve hashcode & equals Implementation for CDOFeatureDeltas.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=330903
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/revision/delta')
-rw-r--r--plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/revision/delta/CDOFeatureDelta.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/revision/delta/CDOFeatureDelta.java b/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/revision/delta/CDOFeatureDelta.java
index e48dd48d24..202d4001ca 100644
--- a/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/revision/delta/CDOFeatureDelta.java
+++ b/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/revision/delta/CDOFeatureDelta.java
@@ -50,6 +50,11 @@ public interface CDOFeatureDelta
public CDOFeatureDelta copy();
/**
+ * @since 4.0
+ */
+ public boolean isStructurallyEqual(Object obj);
+
+ /**
* @author Simon McDuff
*/
public enum Type

Back to the top