Skip to main content
summaryrefslogtreecommitdiffstats
blob: d0206ce3eece9d8976a9a4d8b958475bd82e6605 (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
/*******************************************************************************
 * Copyright (c) 2009, 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.java;

import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.core.context.JoinColumn;
import org.eclipse.jpt.core.context.JoinColumn.Owner;
import org.eclipse.jpt.core.internal.context.JoinColumnTextRangeResolver;
import org.eclipse.jpt.core.internal.context.JptValidator;
import org.eclipse.jpt.core.internal.context.java.AbstractJavaJoinTableJoiningStrategy;
import org.eclipse.jpt.core.internal.jpa1.context.AssociationOverrideInverseJoinColumnValidator;
import org.eclipse.jpt.core.internal.jpa1.context.AssociationOverrideJoinColumnValidator;
import org.eclipse.jpt.core.internal.jpa1.context.JoinTableTableDescriptionProvider;
import org.eclipse.jpt.core.jpa2.context.java.JavaAssociationOverrideRelationshipReference2_0;
import org.eclipse.jpt.core.jpa2.context.java.JavaJoinTableInAssociationOverrideJoiningStrategy2_0;
import org.eclipse.jpt.core.jpa2.resource.java.AssociationOverride2_0Annotation;
import org.eclipse.jpt.core.resource.java.JoinTableAnnotation;
import org.eclipse.jpt.core.utility.TextRange;

public class GenericJavaJoinTableInAssociationOverrideJoiningStrategy2_0 
	extends AbstractJavaJoinTableJoiningStrategy
	implements JavaJoinTableInAssociationOverrideJoiningStrategy2_0
{
	protected transient AssociationOverride2_0Annotation associationOverrideAnnotation;
	
	public GenericJavaJoinTableInAssociationOverrideJoiningStrategy2_0(JavaAssociationOverrideRelationshipReference2_0 parent) {
		super(parent);
	}
	
	public boolean isOverridableAssociation() {
		return false;
	}
	
	@Override
	public JavaAssociationOverrideRelationshipReference2_0 getRelationshipReference() {
		return (JavaAssociationOverrideRelationshipReference2_0) super.getRelationshipReference();
	}
	
	public boolean shouldValidateAgainstDatabase() {
		return getRelationshipReference().getTypeMapping().shouldValidateAgainstDatabase();
	}
	
	// **************** join table *********************************************
	
	public JoinTableAnnotation getAnnotation() {
		return this.associationOverrideAnnotation.getNonNullJoinTable();
	}
	@Override
	protected JoinTableAnnotation addAnnotation() {
		return this.associationOverrideAnnotation.addJoinTable();
	}
	
	@Override
	protected void removeAnnotation() {
		this.associationOverrideAnnotation.removeJoinTable();
	}

	
	public void initialize(AssociationOverride2_0Annotation associationOverride) {
		this.associationOverrideAnnotation = associationOverride;
		super.initialize();
	}
	
	public void update(AssociationOverride2_0Annotation associationOverride) {
		this.associationOverrideAnnotation = associationOverride;
		super.update();
	}


	// **************** validation *********************************************
	
	public TextRange getValidationTextRange(CompilationUnit astRoot) {
		return this.getRelationshipReference().getValidationTextRange(astRoot);
	}

	public JptValidator buildJoinTableJoinColumnValidator(JoinColumn column, JoinColumn.Owner owner, JoinColumnTextRangeResolver textRangeResolver) {
		return new AssociationOverrideJoinColumnValidator(this.getRelationshipReference().getAssociationOverride(), column, owner, textRangeResolver, new JoinTableTableDescriptionProvider());
	}

	public JptValidator buildJoinTableInverseJoinColumnValidator(JoinColumn column, Owner owner, JoinColumnTextRangeResolver textRangeResolver) {
		return new  AssociationOverrideInverseJoinColumnValidator(this.getRelationshipReference().getAssociationOverride(), column, owner, textRangeResolver, new JoinTableTableDescriptionProvider());
	}
}

Back to the top