Skip to main content
summaryrefslogtreecommitdiffstats
blob: f10d1fdcf4ea980b545b6e93f6fb12c709799071 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
 * 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.persistence.MappingFileRef;
import org.eclipse.jpt.core.internal.context.orm.OrmXmlImpl;
import org.eclipse.jpt.core.resource.orm.XmlEntityMappings;
import org.eclipse.jpt.eclipselink.core.resource.orm.EclipseLinkOrmFactory;
import org.eclipse.jpt.eclipselink.core.resource.orm.EclipseLinkOrmResource;

public class EclipseLinkOrmXml extends OrmXmlImpl
{
	public EclipseLinkOrmXml(MappingFileRef parent, EclipseLinkOrmResource ormResource) {
		super(parent, ormResource);
	}
	
	@Override
	protected XmlEntityMappings buildEntityMappingsResource() {
		return EclipseLinkOrmFactory.eINSTANCE.createXmlEntityMappings();
	}
}

Back to the top