blob: 134c154bb71c666aa938b57cc5a58f7848b28418 [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.OrmPersistentType;
import org.eclipse.jpt.core.internal.context.orm.AbstractOrmEntity;
import org.eclipse.jpt.core.internal.jpa2.platform.Generic2_0JpaFactory;
import org.eclipse.jpt.core.jpa2.resource.orm.XmlEntity;
public class GenericOrmEntity2_0
extends AbstractOrmEntity
{
public GenericOrmEntity2_0(OrmPersistentType parent, XmlEntity resourceMapping) {
super(parent, resourceMapping);
}
@Override
protected Generic2_0JpaFactory getJpaFactory() {
return (Generic2_0JpaFactory) super.getJpaFactory();
}
@Override
protected OrmGeneratorContainer buildGeneratorContainer() {
return getJpaFactory().buildOrmGeneratorContainer2_0(this, this.resourceTypeMapping);
}
}