Skip to main content
summaryrefslogtreecommitdiffstats
blob: 12631a5bf0b77b9aa81e2b61f62520474e821ecd (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*******************************************************************************
 * Copyright (c) 2006, 2008 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.gen.internal;

import org.eclipse.jpt.db.ForeignKey;
import org.eclipse.jpt.utility.internal.StringTools;

/**
 * This object is shared by the two gen tables that make up the relation.
 * Upon construction, 'mappedBy' will be 'null'. The first gen table to be
 * used to generate an entity will fill in 'mappedBy' with the appropriate
 * attribute (field/property) name.
 */
class ManyToManyRelation {
	private final GenTable joinGenTable;
	private final ForeignKey owningForeignKey;
	private final GenTable owningGenTable;
	private final ForeignKey nonOwningForeignKey;
	private final GenTable nonOwningGenTable;
	private String mappedBy;  // set while generating entities


	ManyToManyRelation(
			GenTable joinGenTable,
			ForeignKey owningForeignKey,
			GenTable owningGenTable,
			ForeignKey nonOwningForeignKey,
			GenTable nonOwningGenTable
	) {
		super();
		this.joinGenTable = joinGenTable;

		this.owningForeignKey = owningForeignKey;
		this.owningGenTable = owningGenTable;
		owningGenTable.addOwnedManyToManyRelation(this);

		this.nonOwningForeignKey = nonOwningForeignKey;
		this.nonOwningGenTable = nonOwningGenTable;
		nonOwningGenTable.addNonOwnedManyToManyRelation(this);
	}

	GenTable getJoinGenTable() {
		return this.joinGenTable;
	}

	ForeignKey getOwningForeignKey() {
		return this.owningForeignKey;
	}

	GenTable getOwningGenTable() {
		return this.owningGenTable;
	}

	ForeignKey getNonOwningForeignKey() {
		return this.nonOwningForeignKey;
	}

	GenTable getNonOwningGenTable() {
		return this.nonOwningGenTable;
	}

	String getOwnedAttributeName() {
		return this.nonOwningGenTable.getCollectionAttributeName();
	}

	String getNonOwnedAttributeName() {
		return this.owningGenTable.getCollectionAttributeName();
	}

	/**
	 * the scope clears the join table relation if there are any references
	 * to the join table
	 */
	void clear() {
		this.owningGenTable.removeOwnedManyToManyRelation(this);
		this.nonOwningGenTable.removeNonOwnedManyToManyRelation(this);
	}

	String getMappedBy() {
		return this.mappedBy;
	}

	void setMappedBy(String mappedBy) {
		this.mappedBy = mappedBy;
	}

	String getOwningEntityName() {
		return this.owningGenTable.getEntityName();
	}

	String getNonOwningEntityName() {
		return this.nonOwningGenTable.getEntityName();
	}

	boolean joinTableNameIsDefault() {
		return this.joinGenTable.joinTableNameIsDefault();
	}

	@Override
	public String toString() {
		return StringTools.buildToStringFor(this, this.joinGenTable);
	}

}

Back to the top