Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2007-07-21 10:04:00 +0000
committerEike Stepper2007-07-21 10:04:00 +0000
commitfaca69994df1ace5c58695a861d50e6db0d09069 (patch)
tree569866062447e3b68617110b5346bbab23941a59 /plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaImpl.java
parent006d349110cfa130fc1b371313c41907bab0c859 (diff)
downloadcdo-faca69994df1ace5c58695a861d50e6db0d09069.tar.gz
cdo-faca69994df1ace5c58695a861d50e6db0d09069.tar.xz
cdo-faca69994df1ace5c58695a861d50e6db0d09069.zip
*** empty log message ***
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaImpl.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaImpl.java11
1 files changed, 4 insertions, 7 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaImpl.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaImpl.java
index 8facd2684f..e07984e17f 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaImpl.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOMetaImpl.java
@@ -42,11 +42,9 @@ public class CDOMetaImpl implements InternalCDOObject
private CDOID id;
- public CDOMetaImpl(CDOViewImpl view, InternalEObject metaInstance, CDOID id)
+ public CDOMetaImpl(InternalEObject metaInstance)
{
- this.view = view;
this.metaInstance = metaInstance;
- this.id = id;
}
public CDOViewImpl getView()
@@ -81,8 +79,7 @@ public class CDOMetaImpl implements InternalCDOObject
public CDOClass cdoClass()
{
- // TODO Implement method CDOMetaImpl.cdoClass()
- throw new UnsupportedOperationException("Not yet implemented");
+ throw new UnsupportedOperationException();
}
public CDOViewImpl cdoView()
@@ -97,7 +94,7 @@ public class CDOMetaImpl implements InternalCDOObject
public void cdoInternalSetID(CDOID id)
{
- throw new UnsupportedOperationException();
+ this.id = id;
}
public void cdoInternalSetState(CDOState state)
@@ -112,7 +109,7 @@ public class CDOMetaImpl implements InternalCDOObject
public void cdoInternalSetView(CDOView view)
{
- throw new UnsupportedOperationException();
+ this.view = (CDOViewImpl)view;
}
public void cdoInternalSetResource(CDOResource resource)

Back to the top