Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2013-02-28 21:09:18 +0000
committerBrian Vosburgh2013-03-05 20:10:05 +0000
commit4adfbfc9fdb4eeba56a3ed26f015a07a3305eb3f (patch)
treed8b313363065de09cbd2fcb411379f4a300b1d39 /jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2
parent8b1cda071346e4b6f53bc289f13be1e112783857 (diff)
downloadwebtools.dali-4adfbfc9fdb4eeba56a3ed26f015a07a3305eb3f.tar.gz
webtools.dali-4adfbfc9fdb4eeba56a3ed26f015a07a3305eb3f.tar.xz
webtools.dali-4adfbfc9fdb4eeba56a3ed26f015a07a3305eb3f.zip
post-hard reset/cherry-pick recovery changes
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/OverrideRelationship2_0.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/OverrideRelationship2_0.java b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/OverrideRelationship2_0.java
index 10dbd97220..31b3606551 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/OverrideRelationship2_0.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2/context/OverrideRelationship2_0.java
@@ -9,11 +9,11 @@
******************************************************************************/
package org.eclipse.jpt.jpa.core.jpa2.context;
-import org.eclipse.jpt.jpa.core.context.SpecifiedAssociationOverride;
import org.eclipse.jpt.jpa.core.context.JoinColumn;
-import org.eclipse.jpt.jpa.core.context.ReadOnlyJoinTable;
+import org.eclipse.jpt.jpa.core.context.JoinTable;
import org.eclipse.jpt.jpa.core.context.JoinTableRelationship;
import org.eclipse.jpt.jpa.core.context.OverrideRelationship;
+import org.eclipse.jpt.jpa.core.context.SpecifiedAssociationOverride;
import org.eclipse.jpt.jpa.core.internal.context.JptValidator;
/**
@@ -35,5 +35,5 @@ public interface OverrideRelationship2_0
JptValidator buildJoinTableInverseJoinColumnValidator(JoinColumn column, JoinColumn.Owner owner);
- JptValidator buildJoinTableValidator(ReadOnlyJoinTable table);
+ JptValidator buildJoinTableValidator(JoinTable table);
}

Back to the top