ブレークポイント

ID: org.eclipse.debug.core.breakpoints

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

構成マークアップ:

   <!ELEMENT extension (breakpoint*)>

   <!ATTLIST extension
     point CDATA #REQUIRED
     id    CDATA #IMPLIED
     name  CDATA #IMPLIED
   >

   <!ELEMENT breakpoint EMPTY>

   <!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 (c) 2000, 2003 IBM Corporation and others. All Rights Reserved.