Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfullbright2008-11-19 19:33:20 +0000
committerpfullbright2008-11-19 19:33:20 +0000
commit56fe773f193fa3e565a8ec13446c1c11b92ee7f8 (patch)
tree75aed8ca458c093f1e9d8dc3ff3263373a6da5a1
parentcd27b42c99b44175b691957a6a94d071514f1254 (diff)
downloadwebtools.dali-56fe773f193fa3e565a8ec13446c1c11b92ee7f8.tar.gz
webtools.dali-56fe773f193fa3e565a8ec13446c1c11b92ee7f8.tar.xz
webtools.dali-56fe773f193fa3e565a8ec13446c1c11b92ee7f8.zip
[247107] - Two [Map As] is displayed in the context menu of "JPA Structure"
-rw-r--r--jpa/plugins/org.eclipse.jpt.ui/plugin.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.ui/plugin.xml b/jpa/plugins/org.eclipse.jpt.ui/plugin.xml
index fc4ac0c55a..7707e15f70 100644
--- a/jpa/plugins/org.eclipse.jpt.ui/plugin.xml
+++ b/jpa/plugins/org.eclipse.jpt.ui/plugin.xml
@@ -315,7 +315,7 @@
<visibleWhen>
<with
variable="selection">
- <iterate>
+ <iterate ifEmpty="false">
<instanceof value="org.eclipse.jpt.core.context.orm.EntityMappings"/>
</iterate>
</with>
@@ -326,7 +326,7 @@
<visibleWhen>
<with
variable="selection">
- <iterate>
+ <iterate ifEmpty="false">
<instanceof value="org.eclipse.jpt.core.context.orm.OrmPersistentType"/>
</iterate>
</with>
@@ -337,7 +337,7 @@
<visibleWhen>
<with
variable="selection">
- <iterate>
+ <iterate ifEmpty="false">
<and>
<instanceof value="org.eclipse.jpt.core.context.orm.OrmPersistentAttribute"/>
<test property="org.eclipse.jpt.core.isVirtual" value="true"/>
@@ -351,7 +351,7 @@
<visibleWhen>
<with
variable="selection">
- <iterate>
+ <iterate ifEmpty="false">
<and>
<instanceof value="org.eclipse.jpt.core.context.orm.OrmPersistentAttribute"/>
<test property="org.eclipse.jpt.core.isVirtual" value="true"/>
@@ -365,7 +365,7 @@
<visibleWhen>
<with
variable="selection">
- <iterate>
+ <iterate ifEmpty="false">
<and>
<instanceof value="org.eclipse.jpt.core.context.orm.OrmPersistentAttribute"/>
<test property="org.eclipse.jpt.core.isVirtual" value="false"/>
@@ -382,7 +382,7 @@
<visibleWhen>
<with
variable="selection">
- <iterate>
+ <iterate ifEmpty="false">
<instanceof value="org.eclipse.jpt.core.context.PersistentType"/>
</iterate>
</with>
@@ -400,7 +400,7 @@
<visibleWhen>
<with
variable="selection">
- <iterate>
+ <iterate ifEmpty="false">
<and>
<instanceof value="org.eclipse.jpt.core.context.PersistentAttribute"/>
<test property="org.eclipse.jpt.core.isVirtual" value="false"/>

Back to the top