blob: f2bcc82061ebd2c80836f6cf96ff76b0c817495b [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.jpa2.JpaFactory2_0;
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 JpaFactory2_0 getJpaFactory() {
return (JpaFactory2_0) super.getJpaFactory();
}
@Override
protected OrmGeneratorContainer buildGeneratorContainer() {
return getJpaFactory().buildOrmGeneratorContainer2_0(this, this.resourceTypeMapping);
}
}