| <?xml version='1.0' encoding='UTF-8'?> | |
| <!-- Schema file written by PDE --> | |
| <schema targetNamespace="org.eclipse.debug.ui"> | |
| <annotation> | |
| <appInfo> | |
| <meta.schema plugin="org.eclipse.debug.ui" id="debugViewContentProviders" name="Debug View Content Providers"/> | |
| </appInfo> | |
| <documentation> | |
| This extension point allows a debug model to provide a custom content provider for the debug view. A default content provider is provided by the debug platform, but clients may override the default content provider to customize the presentation in the debug view. | |
| </documentation> | |
| </annotation> | |
| <element name="extension"> | |
| <complexType> | |
| <sequence> | |
| <element ref="debugViewContentProvider" minOccurs="0" maxOccurs="unbounded"/> | |
| </sequence> | |
| <attribute name="point" type="string" use="required"> | |
| <annotation> | |
| <documentation> | |
| a fully qualified identifier of the target extension point | |
| </documentation> | |
| </annotation> | |
| </attribute> | |
| <attribute name="id" type="string"> | |
| <annotation> | |
| <documentation> | |
| an optional identifier of the extension instance | |
| </documentation> | |
| </annotation> | |
| </attribute> | |
| <attribute name="name" type="string"> | |
| <annotation> | |
| <documentation> | |
| an optional name of the extension instance | |
| </documentation> | |
| </annotation> | |
| </attribute> | |
| </complexType> | |
| </element> | |
| <element name="debugViewContentProvider"> | |
| <complexType> | |
| <attribute name="debugModelId" type="string" use="required"> | |
| <annotation> | |
| <documentation> | |
| specifies the debug model identifier this content provider is for | |
| </documentation> | |
| </annotation> | |
| </attribute> | |
| <attribute name="class" type="string" use="required"> | |
| <annotation> | |
| <documentation> | |
| the fully qualified name of a Java class that implements <code>org.eclipse.jface.viewers.ITreeContentProvider</code>. | |
| </documentation> | |
| <appInfo> | |
| <meta.attribute kind="java"/> | |
| </appInfo> | |
| </annotation> | |
| </attribute> | |
| </complexType> | |
| </element> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="since"/> | |
| </appInfo> | |
| <documentation> | |
| 3.1 | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="examples"/> | |
| </appInfo> | |
| <documentation> | |
| The following is an example of a debug view content provider extension point: | |
| <p> | |
| <pre> | |
| <extension point = "org.eclipse.debug.ui.debugViewContentProviders"> | |
| <debugViewContentProvider | |
| class = "com.example.JavaDebugContentProvider" | |
| debugModelId = "com.example.JavaDebugId"> | |
| </debugViewContentProvider> | |
| </extension> | |
| </pre> | |
| </p> | |
| In the example above, the class | |
| <samp>com.example.JavaDebugContentProvider</samp> will be | |
| used to retrieve children of debug elements originating | |
| from the debug model identified by | |
| <samp>com.example.JavaDebugId</samp>. | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="apiInfo"/> | |
| </appInfo> | |
| <documentation> | |
| Value of the attribute <samp>class</samp> must be a fully | |
| qualified class name of a Java class that implements | |
| <samp>org.eclipse.jface.viewers.ITreeContentProvider</samp>. | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="implementation"/> | |
| </appInfo> | |
| <documentation> | |
| The debug platform provides a default implementation in org.eclipse.debug.ui.DefaultDebugViewContentProvider. Clients may subclass this class. | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="copyright"/> | |
| </appInfo> | |
| <documentation> | |
| Copyright (c) 2004 IBM Corporation and others.<br> | |
| All rights reserved. This program and the accompanying materials are made | |
| available under the terms of the Common Public License v1.0 which | |
| accompanies this distribution, and is available at | |
| <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a> | |
| </documentation> | |
| </annotation> | |
| </schema> |