Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2008-05-15 03:40:11 +0000
committerkmoore2008-05-15 03:40:11 +0000
commit595a7dfcbac5fc2bff37bbb3ef993f8cb94770b1 (patch)
tree99d1efb05419ddc25577992ea35001e9b831000f /jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java
parent149d2ac3cac752b88da3ac4d1c628e6a7867fb5b (diff)
downloadwebtools.dali-595a7dfcbac5fc2bff37bbb3ef993f8cb94770b1.tar.gz
webtools.dali-595a7dfcbac5fc2bff37bbb3ef993f8cb94770b1.tar.xz
webtools.dali-595a7dfcbac5fc2bff37bbb3ef993f8cb94770b1.zip
231471 - discriminator value combo disabled incorrectly in orm.xml
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java
index 9723046ef6..6b304e6b4a 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/Entity.java
@@ -135,8 +135,7 @@ public interface Entity extends TypeMapping, GeneratorHolder, QueryHolder, IdCla
* Return whether a DiscriminatorValue is allowed for this Entity
* It is allowed if the IType is concrete (not abstract)
*/
- //TODO add tests in java and xml for this
- boolean isDiscriminatorValueAllowed();
+ boolean isDiscriminatorValueAllowed();
String DISCRIMINATOR_VALUE_ALLOWED_PROPERTY = "discriminatorValueAllowedProperty";

Back to the top