调试模型表示法

标识:org.eclipse.debug.ui.debugModelPresentations

描述:此扩展点允许工具处理调试模型的表示法方面的问题。调试模型表示法负责为特定调试模型中的元素提供标号、图像和编辑器。

配置标记:

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

示例:以下是调试模型显示扩展点的一个示例:

   <extension point = "org.eclipse.debug.ui.debugModelPresentations">
       <debugModelPresentation
           class = "com.example.JavaModelPresentation"
           id = "com.example.JavaDebugModel">
       </debugModelPresentation>
   </extension> 

在上面的示例中,将使用类 com.example.JavaModelPresentation 来呈示和提供起源于由 com.example.JavaDebugModel 标识的调试模型的调试元素。

API 信息:操作属性 class 的值必须是实现 org.eclipse.debug.ui.IDebugModelPresentation 的 Java 类的全限定类名。

Copyright (c) 2000, 2003 IBM Corporation and others. All Rights Reserved.