起動構成タブ・グループ

ID: 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>

上の例では、ID com.example.ExampleLaunchConfigurationTypeIdentifier を持つ起動構成型について、 与えられたタブ・グループが「起動構成」ダイアログに表示されます。

API 情報: 属性 class の値は、インターフェース org.eclipse.debug.ui.ILaunchConfigurationTabGroup をインプリメントする Java クラスの 完全修飾名でなければなりません。

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