blob: dfb06bfd587c9bdac6e0ec2b7f732a1eb9a46180 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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.persistence.MappingFileRef;
import org.eclipse.jpt.core.internal.context.orm.OrmXmlImpl;
import org.eclipse.jpt.eclipselink.core.context.orm.EclipseLinkOrmXml;
import org.eclipse.jpt.eclipselink.core.resource.orm.EclipseLinkOrmResource;
public class EclipseLinkOrmXmlImpl extends OrmXmlImpl
implements EclipseLinkOrmXml
{
public EclipseLinkOrmXmlImpl(MappingFileRef parent, EclipseLinkOrmResource ormResource) {
super(parent, ormResource);
}
}