Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaWrapper.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaWrapper.java109
1 files changed, 109 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaWrapper.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaWrapper.java
new file mode 100644
index 0000000000..228bcc93d6
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaWrapper.java
@@ -0,0 +1,109 @@
+/***************************************************************************
+ * Copyright (c) 2004 - 2008 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.internal.cdo;
+
+import org.eclipse.emf.cdo.CDOState;
+import org.eclipse.emf.cdo.common.id.CDOID;
+import org.eclipse.emf.cdo.common.model.CDOClass;
+import org.eclipse.emf.cdo.common.revision.CDORevision;
+import org.eclipse.emf.cdo.eresource.CDOResource;
+
+import org.eclipse.emf.ecore.InternalEObject;
+
+/**
+ * @author Eike Stepper
+ * @since 2.0
+ */
+public class CDOMetaWrapper extends CDOObjectWrapper
+{
+ public CDOMetaWrapper(CDOViewImpl view, InternalEObject instance, CDOID id)
+ {
+ this.view = view;
+ this.instance = instance;
+ this.id = id;
+ }
+
+ public CDOState cdoState()
+ {
+ return CDOState.CLEAN;
+ }
+
+ public CDORevision cdoRevision()
+ {
+ throw new UnsupportedOperationException();
+ }
+
+ public CDOResource cdoResource()
+ {
+ throw new UnsupportedOperationException();
+ }
+
+ public CDOClass cdoClass()
+ {
+ throw new UnsupportedOperationException();
+ }
+
+ public void cdoReload()
+ {
+ throw new UnsupportedOperationException();
+ }
+
+ public boolean cdoTransient()
+ {
+ return false;
+ }
+
+ public CDOState cdoInternalSetState(CDOState state)
+ {
+ throw new UnsupportedOperationException();
+ }
+
+ public void cdoInternalSetRevision(CDORevision revision)
+ {
+ throw new UnsupportedOperationException();
+ }
+
+ public void cdoInternalSetResource(CDOResource resource)
+ {
+ throw new UnsupportedOperationException();
+ }
+
+ public void cdoInternalPostLoad()
+ {
+ throw new UnsupportedOperationException();
+ }
+
+ public void cdoInternalPostAttach()
+ {
+ throw new UnsupportedOperationException();
+ }
+
+ public void cdoInternalPostDetach()
+ {
+ throw new UnsupportedOperationException();
+ }
+
+ public void cdoInternalPreCommit()
+ {
+ throw new UnsupportedOperationException();
+ }
+
+ @Override
+ public String toString()
+ {
+ if (cdoID() == null)
+ {
+ return instance.eClass().getName() + "?";
+ }
+
+ return instance.eClass().getName() + "@" + cdoID();
+ }
+}

Back to the top