Launch Configuration Tab Groups

Identifier: org.eclipse.debug.ui.launchConfigurationTabGroups

Description: This extension point provides a mechanism for contributing a group of tabs to the launch configuration dialog for a type of launch configuration.

Configuration Markup:

   <!ELEMENT launchConfigurationTabGroup>
   <!ATTLIST launchConfigurationTabGroup 

      id            CDATA #REQUIRED
      type          CDATA #REQUIRED
      class         CDATA #REQUIRED

Examples:

The following is an example of a launch configuration tab group extension point:

<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 in the launch configuration dialog 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.

Copyright IBM Corp. 2000, 2001. All Rights Reserved.