Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2006-09-01 18:20:47 +0000
committerMichael Rennie2006-09-01 18:20:47 +0000
commit2761dc29474c592d4903cca5f5df0489269d5dbd (patch)
treefcc9fe2779890a4ffaeff6ae30f574bd317dc644 /org.eclipse.debug.ui/plugin.xml
parentce4995b4b9f98037b357fc33de328b97b84acf0d (diff)
downloadeclipse.platform.debug-2761dc29474c592d4903cca5f5df0489269d5dbd.tar.gz
eclipse.platform.debug-2761dc29474c592d4903cca5f5df0489269d5dbd.tar.xz
eclipse.platform.debug-2761dc29474c592d4903cca5f5df0489269d5dbd.zip
Bug 155287
Adapt debug to the propertyPages extension point deprecations
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml35
1 files changed, 21 insertions, 14 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 01a723abf..417811daa 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -1370,27 +1370,34 @@
<extension
point="org.eclipse.ui.propertyPages">
<page
- objectClass="org.eclipse.debug.core.model.IProcess"
- name="%processPropertyPageName"
- class="org.eclipse.debug.internal.ui.preferences.ProcessPropertyPage"
- id="org.eclipse.debug.ui.properties.process">
- </page>
- <page
- objectClass="org.eclipse.debug.core.model.IDebugElement"
name="%processPropertyPageName"
class="org.eclipse.debug.internal.ui.preferences.ProcessPropertyPage"
id="org.eclipse.debug.ui.properties.process">
+ <enabledWhen>
+ <or>
+ <adapt
+ type="org.eclipse.debug.core.model.IProcess">
+ </adapt>
+ <adapt
+ type="org.eclipse.debug.core.model.IDebugElement"></adapt>
+ </or>
+ </enabledWhen>
</page>
<page
class="org.eclipse.debug.internal.ui.views.memory.renderings.TableRenderingPropertiesPage"
id="org.eclipse.debug.ui.properties.tablerendering"
- name="%TableRenderingInfo.label"
- objectClass="org.eclipse.debug.ui.memory.AbstractTableRendering"/>
- <page
- class="org.eclipse.debug.internal.ui.views.memory.renderings.TableRenderingPropertiesPage"
- id="org.eclipse.debug.ui.properties.asynctablerendering"
- name="%TableRenderingInfo.label"
- objectClass="org.eclipse.debug.internal.ui.memory.provisional.AbstractAsyncTableRendering"/>
+ name="%TableRenderingInfo.label">
+ <enabledWhen>
+ <or>
+ <adapt
+ type="org.eclipse.debug.ui.memory.AbstractTableRendering">
+ </adapt>
+ <adapt
+ type="org.eclipse.debug.internal.ui.memory.provisional.AbstractAsyncTableRendering">
+ </adapt>
+ </or>
+ </enabledWhen>
+ </page>
</extension>
<!-- commands and their bindings
NOTE:

Back to the top