| <?xml version='1.0' encoding='UTF-8'?> | |
| <!-- Schema file written by PDE --> | |
| <schema targetNamespace="org.eclipse.mat.ui" xmlns="http://www.w3.org/2001/XMLSchema"> | |
| <annotation> | |
| <appInfo> | |
| <meta.schema plugin="org.eclipse.mat.ui" id="editorPanes" name="Heap Editor Panes"/> | |
| </appInfo> | |
| <documentation> | |
| <p>This extension point adds new panes to the heap editor. | |
| Each pane is tied to one or more implementations of IResult.</p> | |
| </documentation> | |
| </annotation> | |
| <element name="extension"> | |
| <annotation> | |
| <appInfo> | |
| <meta.element /> | |
| </appInfo> | |
| </annotation> | |
| <complexType> | |
| <sequence> | |
| <element ref="pane" minOccurs="1" maxOccurs="unbounded"/> | |
| </sequence> | |
| <attribute name="point" type="string" use="required"> | |
| <annotation> | |
| <documentation> | |
| </documentation> | |
| </annotation> | |
| </attribute> | |
| <attribute name="id" type="string"> | |
| <annotation> | |
| <documentation> | |
| </documentation> | |
| </annotation> | |
| </attribute> | |
| <attribute name="name" type="string"> | |
| <annotation> | |
| <documentation> | |
| </documentation> | |
| <appInfo> | |
| <meta.attribute translatable="true"/> | |
| </appInfo> | |
| </annotation> | |
| </attribute> | |
| </complexType> | |
| </element> | |
| <element name="pane"> | |
| <complexType> | |
| <sequence> | |
| <element ref="result" minOccurs="0" maxOccurs="unbounded"/> | |
| </sequence> | |
| <attribute name="id" type="string" use="required"> | |
| <annotation> | |
| <documentation> | |
| unique id of the editor pane | |
| </documentation> | |
| </annotation> | |
| </attribute> | |
| <attribute name="class" type="string" use="required"> | |
| <annotation> | |
| <documentation> | |
| implementor of <a href="org/eclipse/mat/ui/editor/AbstractEditorPane.html"><samp>org.eclipse.mat.ui.editor.AbstractEditorPane</samp></a> | |
| </documentation> | |
| <appInfo> | |
| <meta.attribute kind="java" basedOn="org.eclipse.mat.ui.editor.AbstractEditorPane:"/> | |
| </appInfo> | |
| </annotation> | |
| </attribute> | |
| </complexType> | |
| </element> | |
| <element name="result"> | |
| <complexType> | |
| <attribute name="type" type="string"> | |
| <annotation> | |
| <documentation> | |
| the result of type <a href="org/eclipse/mat/query/IResult.html"><samp>org.eclipse.mat.query.IResult</samp></a> which should be displayed by this pane | |
| </documentation> | |
| <appInfo> | |
| <meta.attribute kind="java" basedOn=":org.eclipse.mat.query.IResult"/> | |
| </appInfo> | |
| </annotation> | |
| </attribute> | |
| </complexType> | |
| </element> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="since"/> | |
| </appInfo> | |
| <documentation> | |
| 0.7.0 | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="examples"/> | |
| </appInfo> | |
| <documentation> | |
| Following is an example of a editor pane declaration: | |
| <p> | |
| <pre> | |
| <extension point="org.eclipse.mat.ui.editorPanes"> | |
| <pane id="PieChartPane" class="org.eclipse.mat.ui.internal.chart.PieChartPane"> | |
| <result type="org.eclipse.mat.query.IResultPie" /> | |
| </pane> | |
| </extension> | |
| </pre> | |
| </p> | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="implementation"/> | |
| </appInfo> | |
| <documentation> | |
| The Memory Analyzer supplies a number panes to display histograms, object lists, trees, tables, text, pie charts, etc. Check out the <samp>org.eclipse.mat.ui</samp> plug-in for more samples. | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="copyright"/> | |
| </appInfo> | |
| <documentation> | |
| Copyright (c) 2008,2010 SAP AG and others.<br> | |
| All rights reserved. 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 | |
| <a href="https://www.eclipse.org/legal/epl-2.0/">https://www.eclipse.org/legal/epl-2.0/</a> | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="apiInfo"/> | |
| </appInfo> | |
| <documentation> | |
| The value of the class attribute must represent an implementor of <samp>org.eclipse.mat.ui.editor.AbstractEditorPane</samp>. | |
| The result attribute shows which types of <samp>org.eclipse.mat.query.IResult</samp> it handles. | |
| </documentation> | |
| </annotation> | |
| </schema> |