Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2009-09-21 18:53:36 +0000
committerDarin Wright2009-09-21 18:53:36 +0000
commited78ed05880e04b3e9e062ef2a4d9da484d793d5 (patch)
tree97fd1fae36cd24e39178924e00af21565e36f943 /org.eclipse.debug.examples.ui/plugin.xml
parentc1a8f2cccf676d67c324b0ca4c8e0f14a8751ca3 (diff)
downloadeclipse.platform.debug-ed78ed05880e04b3e9e062ef2a4d9da484d793d5.tar.gz
eclipse.platform.debug-ed78ed05880e04b3e9e062ef2a4d9da484d793d5.tar.xz
eclipse.platform.debug-ed78ed05880e04b3e9e062ef2a4d9da484d793d5.zip
Bug 286310 - Checkbox support for Flexible Hierachy view
Diffstat (limited to 'org.eclipse.debug.examples.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.examples.ui/plugin.xml21
1 files changed, 20 insertions, 1 deletions
diff --git a/org.eclipse.debug.examples.ui/plugin.xml b/org.eclipse.debug.examples.ui/plugin.xml
index 8a98ff28e..8129e2156 100644
--- a/org.eclipse.debug.examples.ui/plugin.xml
+++ b/org.eclipse.debug.examples.ui/plugin.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?> <!--
- Copyright (c) 2005, 2008 IBM Corporation and others.
+ Copyright (c) 2005, 2009 IBM Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
Contributors:
IBM Corporation - initial API and implementation
+ Patrick Chuong (Texas Instruments) - Checkbox support for Flexible Hierachy view (Bug 286310)
-->
<plugin>
@@ -125,6 +126,12 @@
class="org.eclipse.debug.examples.ui.pda.views.DataStackView"
name="PDA Data Stack"
id="pda.dataStackView"/>
+ <view
+ class="org.eclipse.debug.examples.ui.pda.views.CheckboxView"
+ id="org.eclipse.debug.examples.ui.checkboxView"
+ name="Checkbox View"
+ restorable="true">
+ </view>
</extension>
<extension
@@ -275,7 +282,19 @@
<adapter
type="org.eclipse.debug.internal.ui.viewers.model.provisional.IElementLabelProvider">
</adapter>
+ <adapter
+ type="org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxyFactory">
+ </adapter>
</factory>
+ <factory
+ adaptableType="javax.sound.midi.Track"
+ class="org.eclipse.debug.examples.ui.midi.adapters.MidiAdapterFactory">
+ <adapter
+ type="org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxyFactory">
+ </adapter>
+ </factory>
+
+
</extension>
<extension
point="org.eclipse.debug.ui.detailPaneFactories">

Back to the top