Skip to main content
summaryrefslogtreecommitdiffstats
blob: df9cc59f13ec67f276415c23453c6b4bca2591fa (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
/*
 * Copyright (c) 2004 - 2012 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:
 *    Martin Taal - initial api
 *    Eike Stepper - maintenance
 */
package org.eclipse.emf.cdo.server.internal.hibernate.tuplizer;

import org.eclipse.emf.cdo.common.revision.CDORevisionUtil;
import org.eclipse.emf.cdo.spi.common.revision.CDOFeatureMapEntry;

import org.hibernate.mapping.Component;
import org.hibernate.tuple.Instantiator;

import java.io.Serializable;

/**
 * Instantiates {@link CDOFeatureMapEntry}.
 * 
 * @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
 */

public class FeatureMapEntryInstantiator implements Instantiator
{
  private static final long serialVersionUID = -1219767393020090471L;

  public FeatureMapEntryInstantiator(Component component)
  {
  }

  public Object instantiate()
  {
    final CDOFeatureMapEntry fme = CDORevisionUtil.createCDOFeatureMapEntry();
    return fme;
  }

  public Object instantiate(Serializable id)
  {
    return instantiate();
  }

  public boolean isInstance(Object object)
  {
    return CDOFeatureMapEntry.class.isInstance(object);
  }
}

Back to the top