blob: 183e1125956be60e7108d7e8c4132ec3c24ed3b7 [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.IManyToMany;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Xml Many To Many</b></em>'.
* <!-- end-user-doc -->
*
*
* @see org.eclipse.jpt.core.internal.content.orm.OrmPackage#getXmlManyToMany()
* @model kind="class"
* @generated
*/
public class XmlManyToMany extends XmlMultiRelationshipMappingInternal
implements IManyToMany
{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected XmlManyToMany() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return OrmPackage.Literals.XML_MANY_TO_MANY;
}
public String getKey() {
return IMappingKeys.MANY_TO_MANY_ATTRIBUTE_MAPPING_KEY;
}
@Override
protected void initializeOn(XmlAttributeMapping newMapping) {
newMapping.initializeFromXmlManyToManyMapping(this);
}
@Override
public int xmlSequence() {
return 6;
}
// ********** INonOwningMapping implementation **********
public boolean mappedByIsValid(IAttributeMapping mappedByMapping) {
String mappedByKey = mappedByMapping.getKey();
return (mappedByKey == IMappingKeys.MANY_TO_MANY_ATTRIBUTE_MAPPING_KEY);
}
}