Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2007-08-24 10:05:21 +0000
committerEike Stepper2007-08-24 10:05:21 +0000
commitcb7f6f20d7d4891d5e467d313bc57d6912819032 (patch)
treea28a8dd28fc4d380564a25928deb9b637d71385f /plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/FeatureMapping.java
parent0b09585b20a8dbca4eb6f69f216390438a61e6b4 (diff)
downloadcdo-cb7f6f20d7d4891d5e467d313bc57d6912819032.tar.gz
cdo-cb7f6f20d7d4891d5e467d313bc57d6912819032.tar.xz
cdo-cb7f6f20d7d4891d5e467d313bc57d6912819032.zip
*** empty log message ***
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/FeatureMapping.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/FeatureMapping.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/FeatureMapping.java b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/FeatureMapping.java
new file mode 100644
index 0000000000..14dd7763f2
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/FeatureMapping.java
@@ -0,0 +1,39 @@
+/***************************************************************************
+ * Copyright (c) 2004 - 2007 Eike Stepper, Germany.
+ * 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:
+ * Eike Stepper - initial API and implementation
+ **************************************************************************/
+package org.eclipse.emf.cdo.server.internal.db;
+
+import org.eclipse.emf.cdo.protocol.model.CDOFeature;
+
+/**
+ * @author Eike Stepper
+ */
+public class FeatureMapping
+{
+ private ValueMapping valueMapping;
+
+ private CDOFeature feature;
+
+ public FeatureMapping(ValueMapping valueMapping, CDOFeature feature)
+ {
+ this.valueMapping = valueMapping;
+ this.feature = feature;
+ }
+
+ public ValueMapping getValueMapping()
+ {
+ return valueMapping;
+ }
+
+ public CDOFeature getFeature()
+ {
+ return feature;
+ }
+}

Back to the top