デバッグ・モデル・プレゼンテーション

ID: org.eclipse.debug.ui.debugModelPresentations

説明: この拡張ポイントを使用すると、 ツールを使用してデバッグ・モデルのプレゼンテーションに関する操作行うことができます。 デバッグ・モデル・プレゼンテーションは、指定されたデバッグ・モデル内のエレメントのラベル、イメージ、エディターを提供します。

構成マークアップ:

   <!ATTLIST sectionParser
      class     CDATA #REQUIRED
      id        CDATA #REQUIRED

例:

ビュー・フィルターの拡張ポイントの例を以下に示します。

   <extension 
      point = "org.eclipse.debug.ui.debugModelPresentations"> 
         <debugModelPresentation 
             class = "com.example.JavaModelPresentation"> 
	     id = "com.example.JavaDebugModel"
	</debugLabelProvider 
   </extension> 

上の例では、クラス com.example.JavaModelPresentation を使用して、 com.example.JavaDebugModel で識別されるデバッグ・モデルから生成されたデバッグ・エレメントを表示および 提供しています。

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

Copyright IBM Corporation 2000