<!ELEMENT extension (debugModelPresentation*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT debugModelPresentation EMPTY>
<!ATTLIST debugModelPresentation
class CDATA #REQUIRED
id CDATA #REQUIRED
detailsViewerConfiguration CDATA #IMPLIED>
org.eclipse.debug.ui.IDebugModelPresentation
インターフェースを実装する Java クラスの完全修飾名。3.1 以降、デバッグ・モデル・プレゼンテーションに オプションで IColorProvider
および IFontProvider
を実装して、デバッグ要素のデフォルト・フォントや色を上書きすることができます。org.eclipse.jface.text.source.SourceViewerConfiguration
のインスタンスである Java クラスの完全修飾名。指定された場合、このデバッグ・モデル・プレゼンテーションに関連するデバッグ・モデルから要素の詳細を表示するときに、変数および式のビューの「詳細」域でソース・ビューアー構成が使用されます。指定されない場合は、デフォルト構成が使用されます。
上の例では、クラス com.example.JavaModelPresentation を使用して、 com.example.JavaDebugModel で識別されるデバッグ・モデルから生成されたデバッグ要素を表示および提供します。<extension point =
"org.eclipse.debug.ui.debugModelPresentations"
>
<debugModelPresentation class =
"com.example.JavaModelPresentation"
id =
"com.example.JavaDebugModel"
>
</debugModelPresentation>
</extension>
IColorProvider
および IFontProvider
を実装して、デバッグ要素のデフォルト・フォントや色を上書きすることができます。
Copyright (c) 2000, 2005 IBM Corporation and others.
All rights reserved.
This program and the accompanying materials are made
available under the terms of the Eclipse Public License v1.0 which accompanies
this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html