1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
cdt/launchbar/org.eclipse.launchbar.ui.tests/plugin.xml

27 lines
998 B
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabs">
<tab
class="org.eclipse.launchbar.ui.tests.internal.CustomLaunchConfigTab"
group="org.eclipse.pde.ui.launcher.WorkbenchLauncherTabGroup"
id="org.eclipse.launchbar.ui.tests.internal.MyCustomTab"
name="My Custom Tab">
<placement
after="org.eclipse.debug.ui.prototypeTab">
</placement>
</tab>
<!-- Test for Launch Bar Launch Configuration Warnings -->
<tab
class="org.eclipse.launchbar.ui.tests.internal.WarningLaunchConfigTab"
group="org.eclipse.pde.ui.launcher.WorkbenchLauncherTabGroup"
id="org.eclipse.launchbar.ui.tests.internal.WarningLaunchConfigTab"
name="Warning Tab">
<placement
after="my.custom.tab">
</placement>
</tab>
</extension>
</plugin>