Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6ff9ee37337fd37bbd79729803a3e94ad259af63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/***************************************************************************
 * 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.internal.cdo;

import org.eclipse.emf.cdo.CDOObject;
import org.eclipse.emf.cdo.CDOState;
import org.eclipse.emf.cdo.CDOView;
import org.eclipse.emf.cdo.eresource.CDOResource;
import org.eclipse.emf.cdo.protocol.CDOID;
import org.eclipse.emf.cdo.protocol.revision.CDORevision;

import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.InternalEObject;

/**
 * @author Eike Stepper
 */
public interface InternalCDOObject extends CDOObject, InternalEObject
{
  public void cdoInternalSetID(CDOID id);

  public void cdoInternalSetResource(CDOResource resource);

  public void cdoInternalSetView(CDOView view);

  public void cdoInternalSetState(CDOState state);

  public void cdoInternalSetRevision(CDORevision revision);

  public void cdoInternalFinalizeRevision();

  public EStructuralFeature cdoInternalDynamicFeature(int dynamicFeatureID);
}

Back to the top