blob: 2f5e612f3a78179f20e5169f8863fae715ef5e6b [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.jpa.core.internal.context.orm;
import org.eclipse.emf.ecore.EFactory;
import org.eclipse.jpt.jpa.core.MappingKeys;
import org.eclipse.jpt.jpa.core.context.orm.OrmAttributeMapping;
import org.eclipse.jpt.jpa.core.context.orm.OrmAttributeMappingDefinition;
import org.eclipse.jpt.jpa.core.context.orm.OrmPersistentAttribute;
import org.eclipse.jpt.jpa.core.context.orm.OrmXmlContextNodeFactory;
import org.eclipse.jpt.jpa.core.resource.orm.OrmPackage;
import org.eclipse.jpt.jpa.core.resource.orm.XmlAttributeMapping;
import org.eclipse.jpt.jpa.core.resource.orm.XmlTransient;
import org.eclipse.jpt.jpa.core.resource.xml.EmfTools;
public class OrmTransientMappingDefinition
implements OrmAttributeMappingDefinition
{
// singleton
private static final OrmAttributeMappingDefinition INSTANCE =
new OrmTransientMappingDefinition();
/**
* Return the singleton
*/
public static OrmAttributeMappingDefinition instance() {
return INSTANCE;
}
/**
* Enforce singleton usage
*/
private OrmTransientMappingDefinition() {
super();
}
public String getKey() {
return MappingKeys.TRANSIENT_ATTRIBUTE_MAPPING_KEY;
}
public XmlAttributeMapping buildResourceMapping(EFactory factory) {
return EmfTools.create(
factory,
OrmPackage.eINSTANCE.getXmlTransient(),
XmlTransient.class);
}
public OrmAttributeMapping buildContextMapping(
OrmPersistentAttribute parent,
XmlAttributeMapping resourceMapping,
OrmXmlContextNodeFactory factory) {
return factory.buildOrmTransientMapping(parent, (XmlTransient) resourceMapping);
}
}