blob: f7ea7d8ce86e4c23a1925048a8429f4103d9e8bf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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.context.orm;
import org.eclipse.emf.ecore.EFactory;
import org.eclipse.jpt.core.MappingKeys;
import org.eclipse.jpt.core.context.java.JavaAttributeMapping;
import org.eclipse.jpt.core.context.java.JavaOneToManyMapping;
import org.eclipse.jpt.core.context.orm.OrmAttributeMapping;
import org.eclipse.jpt.core.context.orm.OrmAttributeMappingDefinition;
import org.eclipse.jpt.core.context.orm.OrmPersistentAttribute;
import org.eclipse.jpt.core.context.orm.OrmTypeMapping;
import org.eclipse.jpt.core.context.orm.OrmXmlContextNodeFactory;
import org.eclipse.jpt.core.resource.orm.OrmPackage;
import org.eclipse.jpt.core.resource.orm.XmlAttributeMapping;
import org.eclipse.jpt.core.resource.orm.XmlOneToMany;
import org.eclipse.jpt.core.resource.xml.EmfTools;
public class OrmOneToManyMappingDefinition
implements OrmAttributeMappingDefinition
{
// singleton
private static final OrmAttributeMappingDefinition INSTANCE =
new OrmOneToManyMappingDefinition();
/**
* Return the singleton
*/
public static OrmAttributeMappingDefinition instance() {
return INSTANCE;
}
/**
* Enforce singleton usage
*/
private OrmOneToManyMappingDefinition() {
super();
}
public String getKey() {
return MappingKeys.ONE_TO_MANY_ATTRIBUTE_MAPPING_KEY;
}
public XmlAttributeMapping buildResourceMapping(EFactory factory) {
return EmfTools.create(
factory,
OrmPackage.eINSTANCE.getXmlOneToMany(),
XmlOneToMany.class);
}
public OrmAttributeMapping buildContextMapping(
OrmPersistentAttribute parent,
XmlAttributeMapping resourceMapping,
OrmXmlContextNodeFactory factory) {
return factory.buildOrmOneToManyMapping(parent, (XmlOneToMany) resourceMapping);
}
public XmlAttributeMapping buildVirtualResourceMapping(
OrmTypeMapping ormTypeMapping,
JavaAttributeMapping javaAttributeMapping,
OrmXmlContextNodeFactory factory) {
return factory.buildVirtualXmlOneToMany(ormTypeMapping, (JavaOneToManyMapping) javaAttributeMapping);
}
}