mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Make remote launch tab definition readable
Change-Id: I098091ea75d3839754c6a354a732a408b8258138
This commit is contained in:
parent
519e1c91ab
commit
95351a4842
1 changed files with 40 additions and 43 deletions
|
@ -39,28 +39,36 @@ Anna Dushistova (Mentor Graphics) - code restructuring
|
||||||
|
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.debug.ui.launchConfigurationTabs">
|
point="org.eclipse.debug.ui.launchConfigurationTabs">
|
||||||
<tab
|
|
||||||
id="org.eclipse.rse.remotecdt.launch.RemoteCMainTab"
|
<!-- Run Remote application launch tabs-->
|
||||||
|
<tab id="org.eclipse.rse.remotecdt.launch.RemoteCMainTab"
|
||||||
group="org.eclipse.cdt.launch.remoteApplicationRunLaunchTabGroup"
|
group="org.eclipse.cdt.launch.remoteApplicationRunLaunchTabGroup"
|
||||||
name="Main"
|
name="Main"
|
||||||
class="org.eclipse.cdt.launch.remote.tabs.RemoteCDSFMainTab">
|
class="org.eclipse.cdt.launch.remote.tabs.RemoteCDSFMainTab">
|
||||||
<associatedDelegate delegate="org.eclipse.rse.remotecdt.launch"/>
|
<associatedDelegate delegate="org.eclipse.rse.remotecdt.launch"/>
|
||||||
</tab>
|
</tab>
|
||||||
<tab
|
<tab id="org.eclipse.rse.remotecdt.launch.CAgrumentsTab"
|
||||||
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.launch.CAgrumentsTab"
|
|
||||||
group="org.eclipse.cdt.launch.remoteApplicationRunLaunchTabGroup"
|
group="org.eclipse.cdt.launch.remoteApplicationRunLaunchTabGroup"
|
||||||
name="Arguments"
|
name="Arguments"
|
||||||
class="org.eclipse.cdt.launch.ui.CArgumentsTab">
|
class="org.eclipse.cdt.launch.ui.CArgumentsTab">
|
||||||
<associatedDelegate delegate="org.eclipse.rse.remotecdt.launch"/>
|
<associatedDelegate delegate="org.eclipse.rse.remotecdt.launch"/>
|
||||||
<placement after="org.eclipse.rse.remotecdt.launch.RemoteCMainTab"/>
|
<placement after="org.eclipse.rse.remotecdt.launch.RemoteCMainTab"/>
|
||||||
</tab>
|
</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"
|
<tab id="org.eclipse.rse.remotecdt.dsf.debug.CArgumentsTab"
|
||||||
group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
|
group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
|
||||||
name="Arguments"
|
name="Arguments"
|
||||||
|
@ -75,31 +83,20 @@ Anna Dushistova (Mentor Graphics) - code restructuring
|
||||||
<associatedDelegate delegate="org.eclipse.rse.remotecdt.dsf.debug"/>
|
<associatedDelegate delegate="org.eclipse.rse.remotecdt.dsf.debug"/>
|
||||||
<placement after="org.eclipse.cdt.dsf.gdb.launch.argumentsTab"/>
|
<placement after="org.eclipse.cdt.dsf.gdb.launch.argumentsTab"/>
|
||||||
</tab>
|
</tab>
|
||||||
<tab
|
<tab id="org.eclipse.rse.remotecdt.debug.dsf.SourceLookupTab"
|
||||||
id="org.eclipse.rse.remotecdt.debug.dsf.SourceLookupTab"
|
|
||||||
group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
|
group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
|
||||||
name="Source"
|
name="Source"
|
||||||
class="org.eclipse.debug.ui.sourcelookup.SourceLookupTab">
|
class="org.eclipse.debug.ui.sourcelookup.SourceLookupTab">
|
||||||
<associatedDelegate delegate="org.eclipse.rse.remotecdt.dsf.debug"/>
|
<associatedDelegate delegate="org.eclipse.rse.remotecdt.dsf.debug"/>
|
||||||
<placement after="org.eclipse.rse.remotecdt.dsf.debug.RemoteCDSFDebuggerTab"/>
|
<placement after="org.eclipse.rse.remotecdt.dsf.debug.RemoteCDSFDebuggerTab"/>
|
||||||
</tab>
|
</tab>
|
||||||
<tab
|
<tab id="org.eclipse.rse.remotecdt.debug.dsf.CommonTab"
|
||||||
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>
|
|
||||||
<tab
|
|
||||||
id="org.eclipse.rse.remotecdt.debug.dsf.CommonTab"
|
|
||||||
group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
|
group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
|
||||||
name="Common"
|
name="Common"
|
||||||
class="org.eclipse.debug.ui.CommonTab">
|
class="org.eclipse.debug.ui.CommonTab">
|
||||||
<associatedDelegate delegate="org.eclipse.rse.remotecdt.dsf.debug"/>
|
<associatedDelegate delegate="org.eclipse.rse.remotecdt.dsf.debug"/>
|
||||||
<placement after="org.eclipse.debug.ui.sourceLookupTab"/>
|
<placement after="org.eclipse.debug.ui.sourceLookupTab"/>
|
||||||
</tab>
|
</tab>
|
||||||
|
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
<!-- ============================================ -->
|
<!-- ============================================ -->
|
||||||
|
|
Loading…
Add table
Reference in a new issue