启动配置选项卡组

标识符:org.eclipse.debug.ui.launchConfigurationTabGroups

描述:此扩展点提供了一种机制用于为某类型的启动配置而将一组选项卡添加至启动配置对话框。

配置标记:

   <!ELEMENT launchConfigurationTabGroup>
   <!ATTLIST launchConfigurationTabGroup 

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

示例:

以下是启动配置选项卡组扩展点的一个示例:

<extension point="org.eclipse.debug.ui.launchConfigurationTabGroups">
  <launchConfigurationTabGroup 
     id="com.example.ExampleTabGroup"
     type="com.example.ExampleLaunchConfigurationTypeIdentifier"
     class="com.example.ExampleLaunchConfigurationTabGroupClass">
  </launchConfigurationTabGroup>
</extension>

在以上示例中,对于标识符为 com.example.ExampleLaunchConfigurationTypeIdentifier 的启动配置类型,已添加的选项卡组将显示在启动配置对话框中。

API 信息:属性 class 的值必须是实现接口 org.eclipse.debug.ui.ILaunchConfigurationTabGroup 的 Java 类的全限定名。

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