1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
|
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
Copyright (c) 2005, 2010 IBM Corporation and others.
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
Contributors:
IBM Corporation - initial API and implementation
Patrick Chuong (Texas Instruments) - Checkbox support for Flexible Hierachy view (Bug 286310)
-->
<plugin>
<!--#ifdef ex1 -->
<!--#else -->
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class="org.eclipse.debug.examples.ui.pda.launcher.PDATabGroup"
description="%pda.launchConfigurationTabGroup.description"
id="pda.tabGroup"
type="pda.launchType"/>
<launchConfigurationTabGroup
class="org.eclipse.debug.examples.ui.midi.launcher.MidiTabGroup"
description="%midi.launchConfigurationTabGroup.description"
id="midi.tabGroup"
type="midi.launchType"/>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<launchConfigurationTypeImage
icon="icons/full/obj16/pda.gif"
configTypeID="pda.launchType"
id="pda.typeImage"/>
<launchConfigurationTypeImage
icon="icons/full/obj16/note.gif"
configTypeID="midi.launchType"
id="midi.typeImage"/>
</extension>
<extension
point="org.eclipse.debug.ui.launchShortcuts">
<shortcut
label="%pda.shortcut.label"
icon="icons/full/obj16/pda.gif"
class="org.eclipse.debug.examples.ui.pda.launcher.PDALaunchShortcut"
modes="run, debug"
id="pda.launchShortcut">
<contextualLaunch>
<enablement>
<with variable="selection">
<count value="1"/>
<iterate>
<instanceof value="org.eclipse.core.resources.IFile"/>
<test
value="*.pda"
property="org.eclipse.debug.ui.matchesPattern"/>
</iterate>
</with>
</enablement>
</contextualLaunch>
<configurationType
id="pda.launchType">
</configurationType>
</shortcut>
<shortcut
class="org.eclipse.debug.examples.ui.midi.launcher.MidiLaunchShortcut"
description="%midi.shortcut.description"
icon="icons/full/obj16/note.gif"
id="midi.launchShortcut"
label="%midi.shortcut.label"
modes="run, debug">
<contextualLaunch>
<enablement>
<with variable="selection">
<count value="1"/>
<iterate>
<instanceof value="org.eclipse.core.resources.IFile"/>
<test
value="*.mid"
property="org.eclipse.debug.ui.matchesPattern"/>
</iterate>
</with>
</enablement>
</contextualLaunch>
<configurationType
id="midi.launchType">
</configurationType>
</shortcut>
</extension>
<!--#endif -->
<extension
point="org.eclipse.debug.ui.debugModelPresentations">
<debugModelPresentation
class="org.eclipse.debug.examples.ui.pda.presentation.PDAModelPresentation"
id="pda.debugModel"/>
</extension>
<extension
point="org.eclipse.ui.editors">
<editor
filenames="*.pda"
class="org.eclipse.debug.examples.ui.pda.editor.PDAEditor"
icon="icons/full/obj16/pda.gif"
default="true"
name="%pda.editor.name"
id="pda.editor"
extensions="pda"/>
</extension>
<extension
point="org.eclipse.ui.editorActions">
<editorContribution
targetID="pda.editor"
id="pda.rulerActions">
<action
label="%notused.action.label"
class="org.eclipse.debug.ui.actions.RulerToggleBreakpointActionDelegate"
style="push"
actionID="RulerDoubleClick"
id="pda.doubleClickBreakpointAction"/>
</editorContribution>
</extension>
<extension
point="org.eclipse.ui.views">
<view
icon="icons/full/obj16/pda.gif"
class="org.eclipse.debug.examples.ui.pda.views.DataStackView"
name="%data.stack.view.name"
id="pda.dataStackView"/>
<view
class="org.eclipse.debug.examples.ui.pda.views.CheckboxView"
id="org.eclipse.debug.examples.ui.checkboxView"
name="%checkbox.view.name"
restorable="true">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension targetID="org.eclipse.debug.ui.DebugPerspective">
<view
visible="false"
relative="org.eclipse.debug.ui.VariableView"
relationship="stack"
id="pda.dataStackView"/>
</perspectiveExtension>
</extension>
<extension
point="org.eclipse.ui.contexts">
<context
parentId="org.eclipse.debug.ui.debugging"
description="%context.description"
name="%context.name"
id="pda.debugging"/>
</extension>
<extension
point="org.eclipse.debug.ui.debugModelContextBindings">
<modelContextBinding
contextId="pda.debugging"
debugModelId="pda.debugModel"/>
</extension>
<extension
point="org.eclipse.debug.ui.contextViewBindings">
<contextViewBinding
contextId="pda.debugging"
viewId="pda.dataStackView"/>
</extension>
<extension
point="org.eclipse.ui.popupMenus">
<viewerContribution
targetID="pda.editor.rulerMenu"
id="pda.editor.rulerActions">
<action
label="%toggle.bp.action.label"
class="org.eclipse.debug.ui.actions.RulerToggleBreakpointActionDelegate"
menubarPath="debug"
id="pda.editor.ruler.toggleBreakpointAction"/>
</viewerContribution>
<viewerContribution
targetID="pda.editor.contextMenu"
id="pda.editor.menuActions">
<action
label="%run.to.line.action.label"
definitionId="org.eclipse.debug.ui.commands.RunToLine"
class="org.eclipse.debug.ui.actions.RunToLineActionDelegate"
menubarPath="additions"
id="pda.editor.context.runToLineAction"/>
</viewerContribution>
<!--#ifdef ex5 -->
<!--#else -->
<objectContribution
adaptable="false"
id="pda.dropToFrame"
objectClass="org.eclipse.debug.examples.core.pda.model.PDAStackFrame">
<action
class="org.eclipse.debug.examples.ui.pda.editor.PopFrameActionDelegate"
id="pda.dropToFrame"
label="%pop.frame.action.label"/>
</objectContribution>
<objectContribution
adaptable="false"
id="pda.addMemoryBlock"
objectClass="org.eclipse.debug.examples.core.pda.model.PDADebugTarget">
<action
class="org.eclipse.debug.examples.ui.pda.adapters.AddPDAMemoryBlockAction"
id="pda.addMemoryBlock"
label="%add.memoryblock.action.label">
</action>
</objectContribution>
<!--#endif -->
</extension>
<extension
point="org.eclipse.core.runtime.adapters">
<factory
class="org.eclipse.debug.examples.ui.pda.breakpoints.PDAEditorAdapterFactory"
adaptableType="org.eclipse.debug.examples.ui.pda.editor.PDAEditor">
<adapter type="org.eclipse.debug.ui.actions.IToggleBreakpointsTarget"/>
<!--#ifdef ex7 -->
<!--#else -->
<adapter type="org.eclipse.debug.ui.actions.IRunToLineTarget"/>
<!--#endif -->
</factory>
<factory
adaptableType="org.eclipse.debug.examples.core.pda.model.PDADebugElement"
class="org.eclipse.debug.examples.ui.pda.adapters.CommandAdapterFactory">
<adapter
type="org.eclipse.debug.core.commands.IRestartHandler">
</adapter>
</factory>
-->
<factory
adaptableType="org.eclipse.debug.examples.core.pda.model.PDADebugTarget"
class="org.eclipse.debug.examples.ui.pda.adapters.AdapterFactory">
<adapter
type="org.eclipse.debug.internal.ui.viewers.model.provisional.IElementContentProvider">
</adapter>
<adapter
type="org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxyFactory">
</adapter>
</factory>
<factory
adaptableType="org.eclipse.debug.examples.core.pda.model.PDAStackFrame"
class="org.eclipse.debug.examples.ui.pda.adapters.AdapterFactory">
<adapter
type="org.eclipse.debug.internal.ui.viewers.model.provisional.IViewActionProvider">
</adapter>
</factory>
</extension>
<extension
point="org.eclipse.core.runtime.adapters">
<factory
class="org.eclipse.debug.examples.ui.midi.adapters.MidiAdapterFactory"
adaptableType="org.eclipse.debug.examples.core.midi.launcher.MidiLaunch">
<adapter type="org.eclipse.debug.internal.ui.viewers.model.provisional.IElementContentProvider"/>
<adapter
type="org.eclipse.debug.internal.ui.viewers.model.provisional.IColumnPresentationFactory">
</adapter>
<adapter
type="org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxyFactory">
</adapter>
<adapter
type="org.eclipse.debug.internal.ui.viewers.model.provisional.IElementMementoProvider">
</adapter>
<adapter
type="org.eclipse.debug.core.commands.IStepOverHandler">
</adapter>
</factory>
<factory
class="org.eclipse.debug.examples.ui.midi.adapters.MidiAdapterFactory"
adaptableType="javax.sound.midi.Track">
<adapter type="org.eclipse.debug.internal.ui.viewers.model.provisional.IElementLabelProvider"/>
<adapter
type="org.eclipse.debug.internal.ui.viewers.model.provisional.IElementContentProvider">
</adapter>
<adapter
type="org.eclipse.debug.internal.ui.viewers.model.provisional.IColumnPresentationFactory">
</adapter>
<adapter
type="org.eclipse.debug.core.commands.IStepOverHandler">
</adapter>
</factory>
<factory
adaptableType="org.eclipse.debug.examples.core.midi.launcher.SequencerControl"
class="org.eclipse.debug.examples.ui.midi.adapters.MidiAdapterFactory">
<adapter
type="org.eclipse.debug.internal.ui.viewers.model.provisional.IElementLabelProvider">
</adapter>
<adapter
type="org.eclipse.debug.internal.ui.viewers.model.provisional.IElementEditor">
</adapter>
</factory>
<factory
adaptableType="javax.sound.midi.MidiEvent"
class="org.eclipse.debug.examples.ui.midi.adapters.MidiAdapterFactory">
<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">
<detailFactories
class="org.eclipse.debug.examples.ui.midi.detailpanes.ControlDetailPaneFactory"
id="org.eclipse.debug.examples.ui.controlFactory">
<enablement>
<with
variable="selection">
<count
value="1">
</count>
<iterate>
<or>
<instanceof
value="org.eclipse.debug.examples.core.midi.launcher.TempoControl">
</instanceof>
<instanceof
value="org.eclipse.debug.examples.core.midi.launcher.ClockControl">
</instanceof>
</or>
</iterate>
</with>
</enablement>
</detailFactories>
</extension>
<extension point="org.eclipse.debug.ui.toggleBreakpointsTargetFactories">
<toggleTargetFactory
id="org.eclipse.debug.examples.ui.pda.ToggleWatchpointsTargetFactory"
class="org.eclipse.debug.examples.ui.pda.breakpoints.PDAToggleWatchpointsTargetFactory">
<enablement>
<!-- Test the active debug context. Enable only if the context is a PDA
element , or if there is no debug context (with a debug model) selected. -->
<with variable="debugContext">
<iterate>
<or>
<test property="org.eclipse.debug.ui.getModelIdentifier" value="pda.debugModel"/>
<test property="org.eclipse.debug.ui.getModelIdentifier" value=""/>
</or>
</iterate>
</with>
<!-- If the debug context matches or if there is no active debug
context. Enable the breakpoint toggle for PDA's editor -->
<or>
<instanceof value="org.eclipse.debug.examples.ui.pda.editor.PDAEditor"/>
<with variable="selection">
<count value="1"/>
<iterate>
<or>
<instanceof value="org.eclipse.debug.examples.core.pda.model.PDAVariable"/>
</or>
</iterate>
</with>
</or>
</enablement>
</toggleTargetFactory>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
id="org.eclipse.debug.examples.ui.pushCommand"
name="%push.command.name">
</command>
<command
id="org.eclipse.debug.examples.ui.popCommand"
name="%pop.command.name">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="org.eclipse.debug.examples.ui.pda.views.PushHandler"
commandId="org.eclipse.debug.examples.ui.pushCommand">
<enabledWhen>
<and>
<with variable="activePart">
<instanceof value="org.eclipse.debug.examples.ui.pda.views.DataStackView"/>
</with>
<with variable="debugContext">
<count value="1"/>
<iterate operator="and">
<test property="org.eclipse.debug.ui.getModelIdentifier"
value="pda.debugModel">
</test>
<test property="org.eclipse.debug.examples.ui.canPush"/>
</iterate>
</with>
</and>
</enabledWhen>
</handler>
<handler
class="org.eclipse.debug.examples.ui.pda.views.PopHandler"
commandId="org.eclipse.debug.examples.ui.popCommand">
<enabledWhen>
<and>
<with variable="activePart">
<instanceof value="org.eclipse.debug.examples.ui.pda.views.DataStackView"/>
</with>
<with variable="debugContext">
<count value="1"/>
<iterate>
<test property="org.eclipse.debug.ui.getModelIdentifier"
value="pda.debugModel">
</test>
</iterate>
</with>
<with variable="selection">
<count value="1"/>
</with>
</and>
</enabledWhen>
</handler>
</extension>
<extension
point="org.eclipse.core.expressions.propertyTesters">
<propertyTester
class="org.eclipse.debug.examples.ui.pda.views.CanPushTester"
id="org.eclipse.debug.examples.ui.canPushTester"
namespace="org.eclipse.debug.examples.ui"
properties="canPush"
type="org.eclipse.core.runtime.IAdaptable">
</propertyTester>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:pda.dataStackView?after=additions">
<command
commandId="org.eclipse.debug.examples.ui.pushCommand"
disabledIcon="icons/full/dlcl16/push.gif"
icon="icons/full/elcl16/push.gif"
label="%push.command.label"
style="push">
</command>
<command
commandId="org.eclipse.debug.examples.ui.popCommand"
disabledIcon="icons/full/dlcl16/pop.gif"
icon="icons/full/elcl16/pop.gif"
label="%pop.command.label"
style="push">
</command>
</menuContribution>
<menuContribution
locationURI="toolbar:pda.dataStackView?after=additions">
<command
commandId="org.eclipse.debug.examples.ui.pushCommand"
disabledIcon="icons/full/dlcl16/push.gif"
icon="icons/full/elcl16/push.gif"
label="%push.command.label2"
style="push">
</command>
<command
commandId="org.eclipse.debug.examples.ui.popCommand"
disabledIcon="icons/full/dlcl16/pop.gif"
icon="icons/full/elcl16/pop.gif"
label="%pop.command.label2"
style="push">
</command>
</menuContribution>
</extension>
<extension
point="org.eclipse.debug.ui.memoryRenderings">
<renderingBindings
defaultIds="org.eclipse.debug.ui.rendering.raw_memory"
renderingIds="org.eclipse.debug.ui.rendering.raw_memory, org.eclipse.debug.ui.rendering.ascii">
<enablement>
<instanceof
value="org.eclipse.debug.examples.core.pda.model.PDAMemoryBlock">
</instanceof>
</enablement>
</renderingBindings>
</extension>
<extension
point="org.eclipse.debug.core.statusHandlers">
<statusHandler
class="org.eclipse.debug.examples.ui.midi.launcher.ExampleLaunchStatusHandler"
code="303"
id="org.eclipse.debug.examples.ui.status.handler.launch"
plugin="org.eclipse.debug.examples.core">
</statusHandler>
</extension>
</plugin>
|