<!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
interface. Since 3.1, debug model presentations may optionally implement IColorProvider
and IFontProvider
to override default fonts and colors for debug elements.org.eclipse.jface.text.source.SourceViewerConfiguration
. When specified, the source viewer configuration will be used in the "details" area of the variables and expressions view when displaying the details of an element from the debug model associated with this debug model presentation. When unspecified, a default configuration is used.
<extension point = "org.eclipse.debug.ui.debugModelPresentations"> <debugModelPresentation class = "com.example.JavaModelPresentation" id = "com.example.JavaDebugModel"> </debugModelPresentation> </extension>In the example above, the class com.example.JavaModelPresentation will be used to render and present debug elements originating from the debug model identified by com.example.JavaDebugModel.
IColorProvider
and IFontProvider
to override default fonts and colors for debug elements.
Copyright (c) 2000, 2005 IBM Corporation and others.
This program and the accompanying materials are made
available under the terms of the Eclipse Public License 2.0 which
accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-v20.html/
SPDX-License-Identifier: EPL-2.0