Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Taal2009-11-05 10:19:10 +0000
committerMartin Taal2009-11-05 10:19:10 +0000
commit31ac39ca8d4dc1f548f881e92d50d042c69c1e4c (patch)
tree9f477a49f8f18805302574f7d61357f08ef77d74 /plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/spi/common/revision/CDOFeatureMapEntry.java
parenta5d50f4b1bfd1db0bc6ebee44c6a974771ba7ef1 (diff)
downloadcdo-31ac39ca8d4dc1f548f881e92d50d042c69c1e4c.tar.gz
cdo-31ac39ca8d4dc1f548f881e92d50d042c69c1e4c.tar.xz
cdo-31ac39ca8d4dc1f548f881e92d50d042c69c1e4c.zip
[294028] Add interface CDOFeatureMapEntry
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/spi/common/revision/CDOFeatureMapEntry.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/spi/common/revision/CDOFeatureMapEntry.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/spi/common/revision/CDOFeatureMapEntry.java b/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/spi/common/revision/CDOFeatureMapEntry.java
new file mode 100644
index 0000000000..8f5c77f1e8
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/spi/common/revision/CDOFeatureMapEntry.java
@@ -0,0 +1,25 @@
+/**
+ * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Martin Taal - derived from CDOFeatureMapEntryImpl
+ */
+package org.eclipse.emf.cdo.spi.common.revision;
+
+import org.eclipse.emf.ecore.EStructuralFeature;
+import org.eclipse.emf.ecore.util.FeatureMap;
+
+/**
+ * @since 3.0
+ * @author Martin Taal
+ */
+public interface CDOFeatureMapEntry extends FeatureMap.Entry
+{
+ void setEStructuralFeature(EStructuralFeature feature);
+
+ void setValue(Object value);
+}

Back to the top