Skip to main content
summaryrefslogtreecommitdiffstats
path: root/jpa
diff options
context:
space:
mode:
authorkmoore2008-10-24 20:11:04 +0000
committerkmoore2008-10-24 20:11:04 +0000
commit9b565c24b276abe289b4475f8f5e5e0e391e199a (patch)
treecb4fd4ab6db366c53e2daae4556975fe6df3e2c5 /jpa
parent673ccef944670f44526e99931741fb858e134d0a (diff)
downloadwebtools.dali-9b565c24b276abe289b4475f8f5e5e0e391e199a.tar.gz
webtools.dali-9b565c24b276abe289b4475f8f5e5e0e391e199a.tar.xz
webtools.dali-9b565c24b276abe289b4475f8f5e5e0e391e199a.zip
added a comment about the XmlConvertibleMapping interface
Diffstat (limited to 'jpa')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/orm/VirtualXmlId.java2
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/orm/VirtualXmlVersion.java2
2 files changed, 4 insertions, 0 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/orm/VirtualXmlId.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/orm/VirtualXmlId.java
index 843e903fb2..a1c6e3c929 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/orm/VirtualXmlId.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/orm/VirtualXmlId.java
@@ -119,6 +119,7 @@ public class VirtualXmlId extends VirtualXmlAttributeMapping<JavaIdMapping> impl
throw new UnsupportedOperationException("cannot set values on a virtual mapping"); //$NON-NLS-1$
}
+ //see eclipselink bug 247078 for info one why I made the interface XmlConvertibleMapping
public EnumType getEnumerated() {
throw new UnsupportedOperationException("enumerated not supported on id mappings"); //$NON-NLS-1$
}
@@ -127,6 +128,7 @@ public class VirtualXmlId extends VirtualXmlAttributeMapping<JavaIdMapping> impl
throw new UnsupportedOperationException("cannot set values on a virtual mapping"); //$NON-NLS-1$
}
+ //see eclipselink bug 247078 for info one why I made the interface XmlConvertibleMapping
public boolean isLob() {
throw new UnsupportedOperationException("lob not supported on id mappings"); //$NON-NLS-1$
}
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/orm/VirtualXmlVersion.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/orm/VirtualXmlVersion.java
index 09e947da1d..243a763fab 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/orm/VirtualXmlVersion.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/orm/VirtualXmlVersion.java
@@ -64,6 +64,7 @@ public class VirtualXmlVersion extends VirtualXmlAttributeMapping<JavaVersionMap
throw new UnsupportedOperationException("cannot set values on a virtual mapping"); //$NON-NLS-1$
}
+ //see eclipselink bug 247078 for info one why I made the interface XmlConvertibleMapping
public EnumType getEnumerated() {
throw new UnsupportedOperationException("enumerated not supported on version mappings"); //$NON-NLS-1$
}
@@ -72,6 +73,7 @@ public class VirtualXmlVersion extends VirtualXmlAttributeMapping<JavaVersionMap
throw new UnsupportedOperationException("cannot set values on a virtual mapping"); //$NON-NLS-1$
}
+ //see eclipselink bug 247078 for info one why I made the interface XmlConvertibleMapping
public boolean isLob() {
throw new UnsupportedOperationException("lob not supported on version mappings"); //$NON-NLS-1$
}

Back to the top