Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ad0d58da8e04c3330958974f90c32231c9501c99 (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
/**
 * 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:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.emf.cdo.session;

import org.eclipse.emf.internal.cdo.CDOObjectImpl;
import org.eclipse.emf.internal.cdo.CDOStateMachine;

/**
 * @author Eike Stepper
 * @since 2.0
 */
public enum CDOPackageType
{
  /**
   * The type of <code>EPackages</code> that have been dedicatedly generated for CDO. Instances of <code>EClasses</code>
   * of these packages are represented by {@link CDOObjectImpl} to the {@link CDOStateMachine}.
   */
  NATIVE,

  /**
   * The type of <code>EPackages</code> that have been normally generated for EMF. Instances of <code>EClasses</code> of
   * these packages are represented by {@link CDOAdapterImpl} to the {@link CDOStateMachine}.
   */
  LEGACY
}

Back to the top