Skip to main content
summaryrefslogtreecommitdiffstats
blob: c324a95b34f2ab0caa07f8e5b28da8b76f2db06f (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
50
51
52
53
54
55
56
57
58
59
60
61
62
/*******************************************************************************
 * Copyright (c) 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.ui.internal.mappings.details;

import org.eclipse.jpt.core.internal.IAttributeMapping;
import org.eclipse.jpt.core.internal.mappings.IAssociationOverride;
import org.eclipse.jpt.core.internal.mappings.IEntity;
import org.eclipse.jpt.core.internal.mappings.IJoinColumn;
import org.eclipse.jpt.core.internal.mappings.IRelationshipMapping;
import org.eclipse.jpt.db.internal.Schema;
import org.eclipse.jpt.db.internal.Table;
import org.eclipse.swt.widgets.Shell;

public class JoinColumnInAssociationOverrideDialog extends JoinColumnDialog {

	private IAssociationOverride associationOverride;
	
	JoinColumnInAssociationOverrideDialog(Shell parent, IAssociationOverride associationOverride) {
		super(parent);
		this.associationOverride = associationOverride;
	}

	JoinColumnInAssociationOverrideDialog(Shell parent, IJoinColumn joinColumn) {
		super(parent, joinColumn);
		this.associationOverride = (IAssociationOverride) joinColumn.eContainer();
	}
	
	protected Schema getSchema() {
		return this.associationOverride.typeMapping().dbSchema();
	}
	
	protected String defaultTableName() {
		if (getJoinColumn() != null) {
			return getJoinColumn().getDefaultTable();
		}
		return this.associationOverride.typeMapping().getTableName();
	}

	protected Table getNameTable() {
		return this.associationOverride.typeMapping().primaryDbTable();
	}
	
	protected Table getReferencedNameTable() {
		IAttributeMapping attributeMapping = this.associationOverride.getOwner().attributeMapping(this.associationOverride.getName());
		if (attributeMapping == null || !(attributeMapping instanceof IRelationshipMapping)) {
			return null;
		}
		IEntity targetEntity = ((IRelationshipMapping) attributeMapping).getResolvedTargetEntity();
		if (targetEntity != null) {
			return targetEntity.primaryDbTable();
		}
		return null;
	}

}

Back to the top