Description: This extension point provides a mechanism for contributing a group of tab to the launch configuration dialog for a type of launch configuration.
Configuration Markup:
<!ELEMENT extension (launchConfigurationTabGroup*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
>
<!ELEMENT launchConfigurationTabGroup EMPTY>
<!ATTLIST launchConfigurationTabGroup
id CDATA #REQUIRED
type CDATA #REQUIRED
class CDATA #REQUIRED
helpContextId CDATA #IMPLIED
>
<extension point="org.eclipse.debug.ui.launchConfigurationTabGroups"> <launchConfigurationTabGroup id="com.example.ExampleTabGroup" type="com.example.ExampleLaunchConfigurationTypeIdentifier" class="com.example.ExampleLaunchConfigurationTabGroupClass"> </launchConfigurationTabGroup> </extension>In the above example, the contributed tab group will be shown for the launch configuration type with identifier com.example.ExampleLaunchConfigurationTypeIdentifier.
API Information: Value of the attribute class must be a fully qualified name of a Java class that implements the interface org.eclipse.debug.ui.ILaunchConfigurationTabGroup.