Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingManager.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingManager.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingManager.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingManager.java
index be00945f3..2c7f107e8 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingManager.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingManager.java
@@ -20,29 +20,29 @@ package org.eclipse.debug.ui.memory;
* @noextend This interface is not intended to be extended by clients.
*/
public interface IMemoryRenderingManager extends IMemoryRenderingBindingsProvider {
-
-
+
+
/**
* Returns all contributed memory rendering types.
- *
+ *
* @return all contributed memory rendering types
*/
public IMemoryRenderingType[] getRenderingTypes();
-
+
/**
* Returns the memory rendering type with the given identifier, or
* <code>null</code> if none. The memory rendering manager will
* search through rendering types that are contributed via explicit
* rendering bindings. (i.e. rendering types contributed via the
- * memoryRenderings extension point). This method will not return
+ * memoryRenderings extension point). This method will not return
* rendering types that are contributed by a memory binding provider.
- *
+ *
* @param id memory rendering type identifier
* @return the memory rendering type with the given identifier, or
* <code>null</code> if none
*/
public IMemoryRenderingType getRenderingType(String id);
-
+
}

Back to the top