blob: 2a01ead6feb7073e470e0fada0cebf283c5e4979 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 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.content.orm;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.jpt.core.internal.IAttributeMapping;
import org.eclipse.jpt.core.internal.IMappingKeys;
import org.eclipse.jpt.core.internal.mappings.IOneToMany;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Xml One To Many</b></em>'.
* <!-- end-user-doc -->
*
*
* @see org.eclipse.jpt.core.internal.content.orm.OrmPackage#getXmlOneToMany()
* @model kind="class"
* @generated
*/
public class XmlOneToMany extends XmlMultiRelationshipMappingInternal
implements IOneToMany
{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected XmlOneToMany() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return OrmPackage.Literals.XML_ONE_TO_MANY;
}
public String getKey() {
return IMappingKeys.ONE_TO_MANY_ATTRIBUTE_MAPPING_KEY;
}
protected void initializeOn(XmlAttributeMapping newMapping) {
newMapping.initializeFromXmlOneToManyMapping(this);
}
public int xmlSequence() {
return 4;
}
// ********** INonOwningMapping implementation **********
public boolean mappedByIsValid(IAttributeMapping mappedByMapping) {
String mappedByKey = mappedByMapping.getKey();
return (mappedByKey == IMappingKeys.MANY_TO_ONE_ATTRIBUTE_MAPPING_KEY);
}
}