Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2410537175411fe0511af29266c176c7c821d5c1 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
 * Copyright (c) 2004 - 2011 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:
 *    Simon McDuff - initial API and implementation
 *    Ibrahim Sallam - code refactoring for CDO 3.0
 */
package org.eclipse.emf.cdo.server.internal.objectivity.mapper;

//import org.eclipse.emf.cdo.server.internal.objectivity.bundle.OM;
//import org.eclipse.net4j.util.om.trace.ContextTracer;
import org.eclipse.emf.ecore.EStructuralFeature;

/**
 * mapping between Objy AS class/type and EMF types.
 * 
 * @author ibrahim
 */
public abstract class BasicTypeMapper
{

  // private static final ContextTracer TRACER_DEBUG = new ContextTracer(
  // OM.DEBUG, BasicTypeMapper.class);

  protected String getAttributeName(EStructuralFeature feature)
  {
    return feature.getName();
  }

  protected String getNullAttributeName(EStructuralFeature feature)
  {
    return feature.getName() + "_isNull";
  }

  // protected Class_Position getAttributePosition(ObjyObject objyObject, EStructuralFeature feature)
  // {
  // return objyObject.objyClass().resolve_position(getAttributeName(feature));
  // }

  // protected Class_Position getNullAttributePosition(ObjyObject objyObject, EStructuralFeature feature)
  // {
  // return objyObject.objyClass().resolve_position(getNullAttributeName(feature));
  // }

  // ---------------------------------
  // Object
  // ---------------------------------
  // public void initialize(Class_Object class_Object,
  // EStructuralFeature feature, Class_Position attr)
  // {
  //
  // }
  //
  // public void delete(ObjyObject objyObject,
  // EStructuralFeature feature, Class_Position position)
  // {
  // }
}

Back to the top