blob: ea7942295edd697613dcad327a9dec7e91e4688e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 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.jpt.core.MappingKeys;
import org.eclipse.jpt.core.context.orm.OrmAttributeMapping;
import org.eclipse.jpt.core.context.orm.OrmOneToManyMapping;
import org.eclipse.jpt.core.context.orm.OrmOneToManyRelationshipReference;
import org.eclipse.jpt.core.context.orm.OrmPersistentAttribute;
import org.eclipse.jpt.core.context.orm.OrmRelationshipReference;
import org.eclipse.jpt.core.resource.orm.Attributes;
import org.eclipse.jpt.core.resource.orm.XmlOneToMany;
public class GenericOrmOneToManyMapping<T extends XmlOneToMany>
extends AbstractOrmMultiRelationshipMapping<T>
implements OrmOneToManyMapping
{
public GenericOrmOneToManyMapping(OrmPersistentAttribute parent, T resourceMapping) {
super(parent, resourceMapping);
}
@Override
protected OrmRelationshipReference buildRelationshipReference() {
return new GenericOrmOneToManyRelationshipReference(this, this.resourceAttributeMapping);
}
public int getXmlSequence() {
return 50;
}
public String getKey() {
return MappingKeys.ONE_TO_MANY_ATTRIBUTE_MAPPING_KEY;
}
public void initializeOn(OrmAttributeMapping newMapping) {
newMapping.initializeFromOrmOneToManyMapping(this);
}
public void addToResourceModel(Attributes resourceAttributes) {
resourceAttributes.getOneToManys().add(this.resourceAttributeMapping);
}
public void removeFromResourceModel(Attributes resourceAttributes) {
resourceAttributes.getOneToManys().remove(this.resourceAttributeMapping);
}
@Override
public OrmOneToManyRelationshipReference getRelationshipReference() {
return (OrmOneToManyRelationshipReference) super.getRelationshipReference();
}
}