mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
The memory rendering was approved for cvs commit by the eclipse Intellectual Property Manager. The source matches the bugzilla 137391 attachment. The code could still use some refactoring and clean up.
This commit is contained in:
commit
5dea774f91
4 changed files with 58 additions and 0 deletions
7
.classpath
Normal file
7
.classpath
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
28
.project
Normal file
28
.project
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.dsdp.debug.memory.renderings</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.ManifestBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.SchemaBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.PluginNature</nature>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
4
build.properties
Normal file
4
build.properties
Normal file
|
@ -0,0 +1,4 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.
|
19
plugin.xml
Normal file
19
plugin.xml
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?eclipse version="3.0"?>
|
||||
<plugin>
|
||||
|
||||
<extension point="org.eclipse.debug.ui.memoryRenderings">
|
||||
<renderingType
|
||||
name="Traditional"
|
||||
id="org.eclipse.dsdp.debug.memory.renderings.MemoryRenderingTraditional"
|
||||
class="org.eclipse.dsdp.debug.memory.renderings.MemoryRenderingTypeDelegate">
|
||||
</renderingType>
|
||||
<renderingBindings
|
||||
renderingIds="org.eclipse.dsdp.debug.memory.renderings.MemoryRenderingTraditional"
|
||||
defaultIds="org.eclipse.dsdp.debug.memory.renderings.MemoryRenderingTraditional">
|
||||
<enablement>
|
||||
<instanceof value="org.eclipse.debug.core.model.IMemoryBlockExtension"/>
|
||||
</enablement>
|
||||
</renderingBindings>
|
||||
</extension>
|
||||
|
||||
</plugin>
|
Loading…
Add table
Reference in a new issue