Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2014-08-07 10:29:55 +0000
committerUwe Stieber2014-08-07 10:29:55 +0000
commitc9b91b3fabe2c89688b349350b27d18ae10e1999 (patch)
tree88dda76a9db0634756983bbd1425c865f66571df /target_explorer/plugins/org.eclipse.tcf.te.launch.ui
parent4308b80346803ccdc366341ac158f081fce765ab (diff)
downloadorg.eclipse.tcf-c9b91b3fabe2c89688b349350b27d18ae10e1999.tar.gz
org.eclipse.tcf-c9b91b3fabe2c89688b349350b27d18ae10e1999.tar.xz
org.eclipse.tcf-c9b91b3fabe2c89688b349350b27d18ae10e1999.zip
Target Explorer: Fix launch node expressions
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.launch.ui')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.launch.ui/plugin.xml34
1 files changed, 17 insertions, 17 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.launch.ui/plugin.xml b/target_explorer/plugins/org.eclipse.tcf.te.launch.ui/plugin.xml
index 4124822cc..9e66f3718 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.launch.ui/plugin.xml
+++ b/target_explorer/plugins/org.eclipse.tcf.te.launch.ui/plugin.xml
@@ -608,10 +608,11 @@
</activeWhen>
<enabledWhen>
<with variable="selection">
- <iterate
- operator="and"
- ifEmpty="false">
- <test property="org.eclipse.tcf.te.launch.ui.model.isValidLaunchConfig"/>
+ <iterate operator="and" ifEmpty="false">
+ <and>
+ <instanceof value="org.eclipse.tcf.te.launch.ui.model.LaunchNode"/>
+ <test property="org.eclipse.tcf.te.launch.ui.model.isValidLaunchConfig"/>
+ </and>
</iterate>
</with>
</enabledWhen>
@@ -658,10 +659,11 @@
</activeWhen>
<enabledWhen>
<with variable="selection">
- <iterate
- operator="and"
- ifEmpty="false">
- <test property="org.eclipse.tcf.te.launch.ui.model.canRefresh"/>
+ <iterate operator="and" ifEmpty="false">
+ <and>
+ <instanceof value="org.eclipse.tcf.te.launch.ui.model.LaunchNode"/>
+ <test property="org.eclipse.tcf.te.launch.ui.model.canRefresh"/>
+ </and>
</iterate>
</with>
</enabledWhen>
@@ -696,10 +698,9 @@
<enabledWhen>
<with variable="selection">
<count value="1"/>
- <iterate
- operator="and"
- ifEmpty="false">
+ <iterate operator="and" ifEmpty="false">
<and>
+ <instanceof value="org.eclipse.tcf.te.launch.ui.model.LaunchNode"/>
<test property="org.eclipse.tcf.te.launch.ui.model.isLaunchConfig"/>
<test property="org.eclipse.tcf.te.launch.ui.model.isValidLaunchConfig" value="run"/>
</and>
@@ -723,6 +724,7 @@
<count value="1"/>
<iterate operator="and" ifEmpty="false">
<and>
+ <instanceof value="org.eclipse.tcf.te.launch.ui.model.LaunchNode"/>
<test property="org.eclipse.tcf.te.launch.ui.model.isLaunchConfig"/>
<test property="org.eclipse.tcf.te.launch.ui.model.isValidLaunchConfig" value="debug"/>
</and>
@@ -862,11 +864,10 @@
<definition id="launch.expressions.isSingleLaunchConfig">
<with variable="selection">
<count value="1"/>
- <iterate
- ifEmpty="false"
- operator="and">
+ <iterate ifEmpty="false" operator="and">
<and>
<instanceof value="org.eclipse.tcf.te.launch.ui.model.LaunchNode"/>
+ <instanceof value="org.eclipse.tcf.te.launch.ui.model.LaunchNode"/>
<test property="org.eclipse.tcf.te.launch.ui.model.isLaunchConfig"/>
</and>
</iterate>
@@ -874,11 +875,10 @@
</definition>
<definition id="launch.expressions.isMultiLaunchConfig">
<with variable="selection">
- <iterate
- ifEmpty="false"
- operator="and">
+ <iterate ifEmpty="false" operator="and">
<and>
<instanceof value="org.eclipse.tcf.te.launch.ui.model.LaunchNode"/>
+ <instanceof value="org.eclipse.tcf.te.launch.ui.model.LaunchNode"/>
<test property="org.eclipse.tcf.te.launch.ui.model.isLaunchConfig"/>
</and>
</iterate>

Back to the top