Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9724c2b7bbe20fb52d95622cd5428c3294592b25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*******************************************************************************
 * Copyright (c) 2010 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.jpa2.context.orm;

import org.eclipse.jpt.core.MappingKeys;
import org.eclipse.jpt.core.context.Entity;
import org.eclipse.jpt.core.context.RelationshipMapping;
import org.eclipse.jpt.core.context.TypeMapping;
import org.eclipse.jpt.core.context.orm.OrmJoinColumnEnabledRelationshipReference;
import org.eclipse.jpt.core.internal.context.orm.AbstractOrmJoinColumnInRelationshipMappingJoiningStrategy;
import org.eclipse.jpt.core.resource.orm.XmlJoinColumnsMapping;

public class GenericOrmTargetForiegnKeyJoinColumnJoiningStrategy 
	extends AbstractOrmJoinColumnInRelationshipMappingJoiningStrategy
{

	public GenericOrmTargetForiegnKeyJoinColumnJoiningStrategy(
		OrmJoinColumnEnabledRelationshipReference parent,
		XmlJoinColumnsMapping resource) {
		super(parent, resource);
	}

	public TypeMapping getRelationshipSource() {
		RelationshipMapping relationshipMapping = getRelationshipMapping();
		return relationshipMapping == null ? null : relationshipMapping.getResolvedTargetEntity();
	}

	public TypeMapping getRelationshipTarget() {
		return getRelationshipMapping().getTypeMapping();
	}

	@Override
	protected Entity getRelationshipTargetEntity() {
		TypeMapping relationshipTarget = getRelationshipTarget();
		return relationshipTarget.getKey() == MappingKeys.ENTITY_TYPE_MAPPING_KEY ? (Entity) relationshipTarget : null;
	}

	public boolean isTargetForeignKeyRelationship() {
		return true;
	}

}

Back to the top