Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2012-02-21 16:52:36 +0000
committerkmoore2012-02-21 16:52:36 +0000
commit66fdfc8b9abc02c01d6a00a9dff9dd990209adca (patch)
tree97a55822ac4862cd9ea4cba979f409009c79cde8 /jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context
parent63e7702dcce487fc75c1fcaa73571a004d364bb0 (diff)
downloadwebtools.dali-66fdfc8b9abc02c01d6a00a9dff9dd990209adca.tar.gz
webtools.dali-66fdfc8b9abc02c01d6a00a9dff9dd990209adca.tar.xz
webtools.dali-66fdfc8b9abc02c01d6a00a9dff9dd990209adca.zip
cleaned up targetEmbeddable so that it works more like targetEntity
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context/java/JavaPersistentAttribute.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context/java/JavaPersistentAttribute.java b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context/java/JavaPersistentAttribute.java
index 94310eb2e1..3afdf461f6 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context/java/JavaPersistentAttribute.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/context/java/JavaPersistentAttribute.java
@@ -14,7 +14,6 @@ import org.eclipse.jpt.common.core.resource.java.JavaResourceAttribute;
import org.eclipse.jpt.common.core.resource.java.JavaResourceField;
import org.eclipse.jpt.common.core.resource.java.JavaResourceMethod;
import org.eclipse.jpt.jpa.core.context.CollectionMapping;
-import org.eclipse.jpt.jpa.core.context.Embeddable;
import org.eclipse.jpt.jpa.core.context.PersistentAttribute;
import org.eclipse.jpt.jpa.core.jpa2.resource.java.JPA2_0;
@@ -70,11 +69,6 @@ public interface JavaPersistentAttribute
*/
boolean contains(int offset, CompilationUnit astRoot);
- /**
- * Return the embeddable (type mapping) corresponding to the persistent
- * attribute's type. Return <code>null</code> if it is not found.
- */
- Embeddable getEmbeddable();
// ********** type **********

Back to the top