mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Bug 84799: Implement Memory View and renderings with new rendering APIs.
This commit is contained in:
parent
7918ac34f0
commit
a4475cf6e3
4 changed files with 14 additions and 16 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2005-02-22 Mikhail Khodjaiants
|
||||||
|
Bug 84799: Implement Memory View and renderings with new rendering APIs.
|
||||||
|
* CMemoryBlockExtensionRetrieval.java
|
||||||
|
|
||||||
2005-02-18 Mikhail Khodjaiants
|
2005-02-18 Mikhail Khodjaiants
|
||||||
Remove.
|
Remove.
|
||||||
* cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java
|
* cdi/org/eclipse/cdt/debug/core/cdi/ICDIManager.java
|
||||||
|
|
|
@ -89,14 +89,6 @@ public class CMemoryBlockExtensionRetrieval implements IMemoryBlockExtensionRetr
|
||||||
throw new DebugException( new Status( IStatus.ERROR, CDebugCorePlugin.getUniqueIdentifier(), DebugException.REQUEST_FAILED, msg, null ) );
|
throw new DebugException( new Status( IStatus.ERROR, CDebugCorePlugin.getUniqueIdentifier(), DebugException.REQUEST_FAILED, msg, null ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see org.eclipse.debug.internal.core.memory.IExtendedMemoryBlockRetrieval#getPaddedString()
|
|
||||||
*/
|
|
||||||
public String getPaddedString() {
|
|
||||||
// TODO Auto-generated method stub
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.eclipse.debug.core.model.IMemoryBlockRetrieval#supportsStorageRetrieval()
|
* @see org.eclipse.debug.core.model.IMemoryBlockRetrieval#supportsStorageRetrieval()
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2005-02-22 Mikhail Khodjaiants
|
||||||
|
Bug 84799: Implement Memory View and renderings with new rendering APIs.
|
||||||
|
* plugin.xml
|
||||||
|
|
||||||
2005-02-17 Mikhail Khodjaiants
|
2005-02-17 Mikhail Khodjaiants
|
||||||
Bug 82264: Enhance the Shared Libraries view.
|
Bug 82264: Enhance the Shared Libraries view.
|
||||||
Removed the Shared Libraries view.
|
Removed the Shared Libraries view.
|
||||||
|
|
|
@ -1173,17 +1173,15 @@
|
||||||
<initializer class="org.eclipse.cdt.debug.internal.ui.CDebugUIPreferenceInitializer"/>
|
<initializer class="org.eclipse.cdt.debug.internal.ui.CDebugUIPreferenceInitializer"/>
|
||||||
</extension>
|
</extension>
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.debug.ui.memoryRenderingTypes">
|
point="org.eclipse.debug.ui.memoryRenderings">
|
||||||
<renderingBinding renderingIds="org.eclipse.debug.ui.rendering.raw_memory,org.eclipse.debug.ui.rendering.ascii,org.eclipse.debug.ui.rendering.signedint,org.eclipse.debug.ui.rendering.unsignedint">
|
<renderingBindings
|
||||||
|
defaultIds="org.eclipse.debug.ui.rendering.raw_memory"
|
||||||
|
primaryId="org.eclipse.debug.ui.rendering.raw_memory"
|
||||||
|
renderingIds="org.eclipse.debug.ui.rendering.raw_memory,org.eclipse.debug.ui.rendering.ascii,org.eclipse.debug.ui.rendering.signedint,org.eclipse.debug.ui.rendering.unsignedint">
|
||||||
<enablement>
|
<enablement>
|
||||||
<instanceof value="org.eclipse.cdt.debug.internal.core.model.CMemoryBlockExtension"/>
|
<instanceof value="org.eclipse.cdt.debug.internal.core.model.CMemoryBlockExtension"/>
|
||||||
</enablement>
|
</enablement>
|
||||||
</renderingBinding>
|
</renderingBindings>
|
||||||
<defaultRenderings renderingIds="org.eclipse.debug.ui.rendering.raw_memory">
|
|
||||||
<enablement>
|
|
||||||
<instanceof value="org.eclipse.cdt.debug.internal.core.model.CMemoryBlockExtension"/>
|
|
||||||
</enablement>
|
|
||||||
</defaultRenderings>
|
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
Loading…
Add table
Reference in a new issue