啟動配置標示群組

識別碼: 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 屬性值必須為 Java 類別的完整名稱,實作介面 org.eclipse.debug.ui.ILaunchConfigurationTabGroup

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