| <?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="memoryRenderings" name="Memory Renderings"/> |
| </appInfo> |
| <documentation> |
| Allows plug-ins to contribute arbitrary renderings for memory blocks. For example, a rendering may translate raw bytes of a memory block into ASCII characters. |
| </documentation> |
| </annotation> |
| |
| <include schemaLocation="schema://org.eclipse.core.expressions/schema/expressionLanguage.exsd"/> |
| |
| <element name="extension"> |
| <complexType> |
| <choice> |
| <element ref="renderingType" minOccurs="0" maxOccurs="unbounded"/> |
| <element ref="renderingBindings" minOccurs="0" maxOccurs="unbounded"/> |
| <element ref="defaultRenderings" minOccurs="0" maxOccurs="unbounded"/> |
| </choice> |
| <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="renderingType"> |
| <annotation> |
| <documentation> |
| This element defines a rendering. A rendering is comprised of an id, a name, an optional rendering factory, and an optional list of rendering properties. |
| </documentation> |
| </annotation> |
| <complexType> |
| <attribute name="name" type="string" use="required"> |
| <annotation> |
| <documentation> |
| human-readable name of this rendering type |
| </documentation> |
| <appInfo> |
| <meta.attribute translatable="true"/> |
| </appInfo> |
| </annotation> |
| </attribute> |
| <attribute name="id" type="string" use="required"> |
| <annotation> |
| <documentation> |
| unique identifier for this rendering |
| </documentation> |
| </annotation> |
| </attribute> |
| <attribute name="class" type="string" use="required"> |
| <annotation> |
| <documentation> |
| fully qualified name of the Java class that implements <code>org.eclipse.debug.ui.memory.IMemoryRenderingFactory</code> |
| </documentation> |
| <appInfo> |
| <meta.attribute kind="java"/> |
| </appInfo> |
| </annotation> |
| </attribute> |
| </complexType> |
| </element> |
| |
| <element name="renderingBindings"> |
| <annotation> |
| <documentation> |
| Binds memory blocks with available renderings. |
| </documentation> |
| </annotation> |
| <complexType> |
| <sequence> |
| <element ref="enablement" minOccurs="0" maxOccurs="unbounded"/> |
| </sequence> |
| <attribute name="renderingIds" type="string"> |
| <annotation> |
| <documentation> |
| comma delimited list of memory renderings available for the associated type of memory block. When unspecified a <code>class</code> must be specified. Only one of <code>renderingIds</code> and <code>class</code> may be specified. |
| </documentation> |
| </annotation> |
| </attribute> |
| <attribute name="class" type="string"> |
| <annotation> |
| <documentation> |
| fully qualified name of the Java class that implements <code>org.eclipse.debug.ui.memory.IMemoryRenderingTypeProvider</code>, allowing for dynamic rendering bindings. When unspecified, <code>renderingIds</code> must be specified. Only one of <code>renderingIds</code> and <code>class</code> may be specified. |
| </documentation> |
| <appInfo> |
| <meta.attribute kind="java"/> |
| </appInfo> |
| </annotation> |
| </attribute> |
| </complexType> |
| </element> |
| |
| <element name="defaultRenderings"> |
| <annotation> |
| <documentation> |
| Specifies the default renderings to create for memory blocks. |
| </documentation> |
| </annotation> |
| <complexType> |
| <sequence> |
| <element ref="enablement" minOccurs="1" maxOccurs="unbounded"/> |
| </sequence> |
| <attribute name="renderingIds" type="string"> |
| <annotation> |
| <documentation> |
| comma delimited list of of memory renderings to be created by default for memory blocks of the associated type. Memory renderings are specified via their <code>renderingId</code>. An equivalent rendering binding must exist for a default rendering to be considered. When unspecified, <code>primaryId</code> must be specified. |
| </documentation> |
| </annotation> |
| </attribute> |
| <attribute name="primaryId" type="string"> |
| <annotation> |
| <documentation> |
| specifies the id of the rendering to be considered primary. When there is more than one default rendering bound to a memory block, the UI may use the information to determine which rendering should be made visible (i.e the primrary one). |
| </documentation> |
| </annotation> |
| </attribute> |
| </complexType> |
| </element> |
| |
| <annotation> |
| <appInfo> |
| <meta.section type="since"/> |
| </appInfo> |
| <documentation> |
| 3.1 - replacement for memoryRenderingTypes extension point which was considered experimental in 3.0 |
| </documentation> |
| </annotation> |
| |
| <annotation> |
| <appInfo> |
| <meta.section type="examples"/> |
| </appInfo> |
| <documentation> |
| The following is an example for defining a new rendering type. |
| |
| <p> |
| <pre> |
| <extension |
| id="org.eclipse.debug.ui.renderings" |
| name="Sample Rendering Type" |
| point="org.eclipse.debug.ui.memoryRenderingTypes"> |
| <rendering |
| name="Sample Rendering" |
| renderingId="com.example.sampleRendering" |
| renderingFactory="com.example.SampleRenderingsFactory"> |
| <renderingProperty |
| name="viewTabFactory" |
| value="com.example.SampleViewTabFactory"> |
| </renderingProperty> |
| <viewBinding viewIds="org.eclipse.debug.ui.MemoryView.RenderingViewPane"/> |
| </rendering> |
| </extension> |
| </pre> |
| </p> |
| |
| In the above example, a new rendering type, Sample Rendering, is defined. This rendering type supports the rendering view pane from the Memory View. |
| <br><br> |
| The following is an example for allowing Sample Rendering to be displayed in the rendering view pane from the Memory View. |
| <p> |
| <pre> |
| <extension |
| id="com.example" |
| name="Sample Rendering Extension" |
| point="org.eclipse.debug.ui.memoryRenderingTypes"> |
| <renderingBinding |
| renderingIds="com.example.sampleRendering"> |
| <enablement> |
| <instanceof value="com.example.SampleMemoryBlock"/> |
| </enablement> |
| </renderingBinding> |
| <defaultRenderings |
| renderingIds="com.example.sampleRendering"> |
| <enablement> |
| <instanceof value="com.example.SampleMemoryBlock"/> |
| </enablement> |
| </defaultRenderings> |
| </extension> |
| </pre> |
| </p> |
| |
| In the above example, the Sample Rendering is defined as a valid rendering for SampleMemoryBlock. Whenever SampleMemoryBlock is created in the Memory View, a Sample Rendering will be created. |
| </documentation> |
| </annotation> |
| |
| <annotation> |
| <appInfo> |
| <meta.section type="apiInfo"/> |
| </appInfo> |
| <documentation> |
| <p> |
| <li>Value of the attribute <b>renderingFactory </b> must be a fully qualifed name of a Java class that implements <b>IMemoryRenderingFactory</b>.</li> |
| <li>Value of the attribute <b> value </b> from the <b>viewTabFactory</b> rendering property must be a fully qualifed name of a Java class that implements <b>IMemoryViewTabFactory</b>.</li> |
| <li>Value of the attribute <b>instanceof</b> from the <b> enablement </b> element must be a fully qualified name of a Java class that implements the interface <b>IMemoryBlock</b>.</li> |
| </p> |
| </documentation> |
| </annotation> |
| |
| <annotation> |
| <appInfo> |
| <meta.section type="implementation"/> |
| </appInfo> |
| <documentation> |
| The debug platform provides the following rendering types:<br> |
| <li>Hex Rendering (rendering id: org.eclipse.debug.ui.rendering.raw_memory)</li> |
| <li>ASCII Rendering (rendering id: org.eclipse.debug.ui.rendering.ascii)</li> |
| <li>Signed Integer Rendering (rendering id: org.eclipse.debug.ui.rendering.signedint)</li> |
| <li>Unsigned Integer Rendering (rendering id: org.eclipse.debug.ui.rendering.unsignedint) </li> |
| <br> |
| The debug platform provides a memory view to host renderings. |
| </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> |