Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis Windatt2007-11-21 16:29:15 +0000
committerCurtis Windatt2007-11-21 16:29:15 +0000
commita1ce283f7e8c62449ae45c81a9c52f40213b2ce1 (patch)
tree61461f9cc07c694d52248f0b53080db27903b640 /org.eclipse.debug.ui/plugin.xml
parentf7ae0cf13bf87e46f9bb0b36e86ad02ef20f7180 (diff)
downloadeclipse.platform.debug-a1ce283f7e8c62449ae45c81a9c52f40213b2ce1.tar.gz
eclipse.platform.debug-a1ce283f7e8c62449ae45c81a9c52f40213b2ce1.tar.xz
eclipse.platform.debug-a1ce283f7e8c62449ae45c81a9c52f40213b2ce1.zip
Bug 210472 - Default detail pane viewer should have an enablement expression.
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 1a8d0753b..64aa561a3 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -2598,6 +2598,17 @@ M4 = Platform-specific fourth key
<detailFactories
class="org.eclipse.debug.internal.ui.views.variables.details.DefaultDetailPaneFactory"
id="org.eclipse.debug.ui.defaultDetailPaneFactory">
+ <enablement>
+ <with variable="selection">
+ <iterate>
+ <or>
+ <instanceof value="org.eclipse.debug.core.model.IVariable"/>
+ <instanceof value="org.eclipse.debug.core.model.IExpression"/>
+ <instanceof value="java.lang.String"/>
+ </or>
+ </iterate>
+ </with>
+ </enablement>
</detailFactories>
</extension>

Back to the top