Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a34754f3f11d7d58831046486939458b7e4a24e0 (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?><!--
    Copyright (c) 2010 Wind River Systems, Inc. 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
    http://www.eclipse.org/legal/epl-v10.html
   
    Contributors:
        Wind River Systems - initial API and implementation
 -->

<plugin>

   <extension point="org.eclipse.tm.tcf.startup"/>

   <extension point="org.eclipse.debug.ui.launchConfigurationTabGroups">
      <launchConfigurationTabGroup
            type="org.eclipse.tm.tcf.dsf.LaunchConfigurationType"
            class="org.eclipse.tm.internal.tcf.dsf.ui.launch.LaunchDialogTabGroup"
            id="org.eclipse.dd.dsf.mi.launch.localRunLaunchTabGroup">
      </launchConfigurationTabGroup>
   </extension>
   
   <extension point="org.eclipse.debug.ui.launchConfigurationTypeImages">
      <launchConfigurationTypeImage
            icon="icons/tcf.gif"   
            configTypeID="org.eclipse.tm.tcf.dsf.LaunchConfigurationType"
            id="org.eclipse.tm.tcf.dsf.LaunchImage">
      </launchConfigurationTypeImage>
   </extension>

   <extension point="org.eclipse.core.runtime.adapters">
      <factory 
                class="org.eclipse.tm.internal.tcf.dsf.ui.AdapterFactory" 
                adaptableType="org.eclipse.tm.internal.tcf.dsf.launch.TCFDSFLaunch">
         <adapter type="org.eclipse.debug.internal.ui.viewers.model.provisional.IElementContentProvider"/>
         <adapter type="org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxyFactory"/>
         <adapter type="org.eclipse.debug.internal.ui.viewers.model.provisional.IColumnPresentationFactory"/>
         <adapter type="org.eclipse.debug.core.commands.ITerminateHandler"/>
      </factory>         
   </extension> 
   
   <extension point="org.eclipse.debug.ui.memoryRenderings">
      <renderingBindings
            defaultIds="org.eclipse.debug.ui.rendering.raw_memory"
            primaryId="org.eclipse.debug.ui.rendering.raw_memory"
            renderingIds="org.eclipse.debug.ui.rendering.raw_memory,org.eclipse.debug.ui.rendering.ascii,org.eclipse.debug.ui.rendering.signedint,org.eclipse.debug.ui.rendering.unsignedint">
         <enablement>
            <instanceof value="org.eclipse.dd.dsf.debug.model.DsfMemoryBlock"/>
         </enablement>
      </renderingBindings>
   </extension>

</plugin>

Back to the top