File: plugin.xml

package info (click to toggle)
eclipse-cdt 9.9.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, sid
  • size: 145,456 kB
  • sloc: java: 1,114,843; xml: 64,727; javascript: 18,756; cpp: 5,269; ansic: 3,171; makefile: 1,508; asm: 814; sh: 295; f90: 22; python: 5
file content (114 lines) | stat: -rw-r--r-- 5,548 bytes parent folder | download
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2006, 2010 PalmSource, Inc. 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: 
Ewa Matejska     (PalmSource)      - initial API and implementation 
Martin Oberhuber (Wind River)      - fix 158529: Migrate docs to HTML / TOC format 
Anna Dushistova  (Mentor Graphics) - [314659] added launch delegate for dsf
Anna Dushistova  (Mentor Graphics) - code restructuring
-->
<?eclipse version="3.0"?>
<plugin>
       <extension point="org.eclipse.debug.core.launchDelegates">
      <launchDelegate
            id="org.eclipse.rse.remotecdt.launch"
            type="org.eclipse.cdt.launch.remoteApplicationLaunchType"
            modes="run"
            delegate="org.eclipse.cdt.launch.remote.launching.RemoteRunLaunchDelegate"
            name="%cdiLaunchDelegate.name"
            delegateDescription="%cdiLaunchDelegate.description"
            sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
            sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
      </launchDelegate>
      <launchDelegate
            id="org.eclipse.rse.remotecdt.dsf.debug"
            type="org.eclipse.cdt.launch.remoteApplicationLaunchType"
            modes="debug"
            delegate="org.eclipse.cdt.launch.remote.launching.RemoteGdbLaunchDelegate"
            name="%dsfLaunchDelegate.name"
            delegateDescription="%dsfLaunchDelegate.description"
            sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
            sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
      </launchDelegate>
   </extension>
   
   <extension
         point="org.eclipse.debug.ui.launchConfigurationTabs">
         
      <!-- Run Remote application launch tabs-->    
      <tab id="org.eclipse.rse.remotecdt.launch.RemoteCMainTab"
           group="org.eclipse.cdt.launch.remoteApplicationRunLaunchTabGroup"
           name="Main"
           class="org.eclipse.cdt.launch.remote.tabs.RemoteCDSFMainTab">
        <associatedDelegate delegate="org.eclipse.rse.remotecdt.launch"/>
      </tab>         
      <tab id="org.eclipse.rse.remotecdt.launch.CAgrumentsTab"
           group="org.eclipse.cdt.launch.remoteApplicationRunLaunchTabGroup"
           name="Arguments"
           class="org.eclipse.cdt.launch.ui.CArgumentsTab">
        <associatedDelegate delegate="org.eclipse.rse.remotecdt.launch"/>
        <placement after="org.eclipse.rse.remotecdt.launch.RemoteCMainTab"/>                        
      </tab>         
      <tab id="org.eclipse.rse.remotecdt.launch.CommonTab"
           group="org.eclipse.cdt.launch.remoteApplicationRunLaunchTabGroup"
           name="Common"
           class="org.eclipse.debug.ui.CommonTab">
        <associatedDelegate delegate="org.eclipse.rse.remotecdt.launch"/>
        <placement after="org.eclipse.cdt.cdi.launch.argumentsTab"/>        
      </tab>         
      
      <!-- Debug Remote application launch tabs-->    
      <tab id="org.eclipse.rse.remotecdt.dsf.gdb.mainTab"
           group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
           name="Main"
           class="org.eclipse.cdt.launch.remote.tabs.RemoteCDSFMainTab">
        <associatedDelegate delegate="org.eclipse.rse.remotecdt.dsf.debug"/>
      </tab>         
      <tab id="org.eclipse.rse.remotecdt.dsf.debug.CArgumentsTab"
           group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
           name="Arguments"
           class="org.eclipse.cdt.dsf.gdb.internal.ui.launching.CArgumentsTab">
        <associatedDelegate delegate="org.eclipse.rse.remotecdt.dsf.debug"/>
        <placement after="org.eclipse.cdt.launch.remote.dsf.mainTab"/>
      </tab>
      <tab id="org.eclipse.rse.remotecdt.dsf.debug.RemoteCDSFDebuggerTab"
           group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
           name="Debugger"
           class="org.eclipse.cdt.launch.remote.tabs.RemoteCDSFDebuggerTab">
        <associatedDelegate delegate="org.eclipse.rse.remotecdt.dsf.debug"/>
        <placement after="org.eclipse.cdt.dsf.gdb.launch.argumentsTab"/>
      </tab>
      <tab id="org.eclipse.rse.remotecdt.debug.dsf.SourceLookupTab"
           group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
           name="Source"
           class="org.eclipse.debug.ui.sourcelookup.SourceLookupTab">
        <associatedDelegate delegate="org.eclipse.rse.remotecdt.dsf.debug"/>
        <placement after="org.eclipse.rse.remotecdt.dsf.debug.RemoteCDSFDebuggerTab"/>        
      </tab>         
      <tab id="org.eclipse.rse.remotecdt.debug.dsf.CommonTab"
           group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
           name="Common"
           class="org.eclipse.debug.ui.CommonTab">
        <associatedDelegate delegate="org.eclipse.rse.remotecdt.dsf.debug"/>
        <placement after="org.eclipse.debug.ui.sourceLookupTab"/>                
      </tab>         
   </extension>
   
	<!-- ============================================ -->
	<!-- Define Help Context                          -->
	<!-- ============================================ -->
	<extension point="org.eclipse.help.contexts">
  		<contexts file="HelpContexts.xml"/>
	</extension>
	<extension point="org.eclipse.help.toc">
		<toc file="toc.xml"/>
	</extension>

</plugin>