<!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