| <?xml version='1.0' encoding='UTF-8'?> | |
| <!-- Schema file written by PDE --> | |
| <schema targetNamespace="org.eclipse.mat.api" xmlns="http://www.w3.org/2001/XMLSchema"> | |
| <annotation> | |
| <appInfo> | |
| <meta.schema plugin="org.eclipse.mat.api" id="threadResolver" name="Thread Details Resolver"/> | |
| </appInfo> | |
| <documentation> | |
| <p>The Thread Overview query prints information about the thread | |
| objects found in the heap dump. This extension point can be used | |
| to provide more details.</p> | |
| <p>For example, let's assume your application contains a pool | |
| of "task worker" threads executing your tasks. One could use the | |
| thread details resolver to extract this task information and display | |
| it in the overview columns and/or in the details page of a thread.</p> | |
| </documentation> | |
| </annotation> | |
| <element name="extension"> | |
| <annotation> | |
| <appInfo> | |
| <meta.element /> | |
| </appInfo> | |
| </annotation> | |
| <complexType> | |
| <sequence minOccurs="1" maxOccurs="unbounded"> | |
| <element ref="resolver"/> | |
| </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="resolver"> | |
| <complexType> | |
| <attribute name="impl" type="string" use="required"> | |
| <annotation> | |
| <documentation> | |
| implementor of <a href="org/eclipse/mat/snapshot/extension/IThreadDetailsResolver.html"><samp>org.eclipse.mat.snapshot.extension.IThreadDetailsResolver</samp></a>. | |
| </documentation> | |
| <appInfo> | |
| <meta.attribute kind="java" basedOn=":org.eclipse.mat.snapshot.extension.IThreadDetailsResolver"/> | |
| </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 thread details resolver declaration: | |
| <p> | |
| <pre> | |
| <extension point="org.eclipse.mat.api.threadResolver"> | |
| <resolver impl="com.acme.TaskWorkerDetailResolver" /> | |
| </extension> | |
| </pre> | |
| </p> | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="implementation"/> | |
| </appInfo> | |
| <documentation> | |
| The thread details resolver <code>org.eclipse.mat.dtfj.ThreadDetailsResolver</code>, which delegates to <code>org.eclipse.mat.dtfj.ThreadDetailsResolver1</code> extracts extra thread information from IBM DTFJ dumps such as native stack information, thread states and priority. This resolver is in the DTFJ dump reader plugin <samp>org.eclipse.mat.dtfj</samp>. | |
| </documentation> | |
| </annotation> | |
| <annotation> | |
| <appInfo> | |
| <meta.section type="copyright"/> | |
| </appInfo> | |
| <documentation> | |
| Copyright (c) 2008,2011 SAP AG and IBM Corporation.<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> | |
| </schema> |