ブレークポイント

ID: org.eclipse.debug.core.breakpoints

説明: この拡張ポイントは、新しい型のブレークポイントを定義するメカニズムを提供します。

構成マークアップ:

   <!ATTLIST breakpoint 

      id            CDATA #REQUIRED
      markerType    CDATA #REQUIRED
      class         CDATA #REQUIRED>

例:

ブレークポイント拡張ポイントの例を以下に示します。

<extension point="org.eclipse.debug.core.breakpoints">
   <breakpoint 
      id="com.example.ExampleBreakpoint"
      markerType="com.example.ExampleBreakpointMarker"
      class="com.example.ExampleBreakpointImpl">
   </breakpoint>
</extension>

上の例では、指定されたブレークポイント型はクラス "com.example.BreakpointImpl" によって インプリメントされます。"com.example.ExampleBreakpointMarker" には関連するマーカー定義があり、 ブレークポイントの属性を定義します。

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

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