blob: f02d132bd386b44aa9780f3420a0de24b7f5990a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.eclipselink.core.internal.context.orm;
import org.eclipse.jpt.core.context.PersistentTypeContext;
import org.eclipse.jpt.core.internal.context.orm.GenericOrmPersistentType;
import org.eclipse.jpt.core.resource.orm.Attributes;
import org.eclipse.jpt.eclipselink.core.resource.orm.EclipseLinkOrmFactory;
public class EclipseLinkOrmPersistentType extends GenericOrmPersistentType
{
public EclipseLinkOrmPersistentType(PersistentTypeContext parent, String mappingKey) {
super(parent, mappingKey);
}
@Override
protected Attributes createAttributesResource() {
return EclipseLinkOrmFactory.eINSTANCE.createAttributes();
}
}