blob: cad3ccdbea63a5123d09ffaee2914875319fd107 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.core.internal.jpa2.context.orm;
import org.eclipse.jpt.core.context.orm.OrmGeneratorContainer;
import org.eclipse.jpt.core.context.orm.OrmPersistentAttribute;
import org.eclipse.jpt.core.internal.context.orm.AbstractOrmIdMapping;
import org.eclipse.jpt.core.internal.jpa2.platform.Generic2_0JpaFactory;
import org.eclipse.jpt.core.jpa2.resource.orm.XmlId;
public class GenericOrmIdMapping2_0 extends AbstractOrmIdMapping<XmlId>
{
public GenericOrmIdMapping2_0(OrmPersistentAttribute parent, XmlId resourceMapping) {
super(parent, resourceMapping);
}
@Override
protected Generic2_0JpaFactory getJpaFactory() {
return (Generic2_0JpaFactory) super.getJpaFactory();
}
@Override
protected OrmGeneratorContainer buildGeneratorContainer() {
return getJpaFactory().buildOrmGeneratorContainer2_0(this, this.resourceAttributeMapping);
}
}