Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingContainer.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingContainer.java30
1 files changed, 15 insertions, 15 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingContainer.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingContainer.java
index 9b5717d93..6870adbc8 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingContainer.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingContainer.java
@@ -17,61 +17,61 @@ package org.eclipse.debug.ui.memory;
* for hosting a memory renderings.
* <p>
* Clients hosting memory renderings may implement this interface.
- * </p>
+ * </p>
* @since 3.1
*/
public interface IMemoryRenderingContainer {
/**
* Returns the rendering site hosting this container.
- *
+ *
* @return the rendering site hosting this container
*/
public IMemoryRenderingSite getMemoryRenderingSite();
-
+
/**
* Returns the identifier of this container. Identifiers
* are unique within a container.
- *
+ *
* @return the identifier of this container
*/
public String getId();
-
+
/**
* Adds the given rendering to this container. A rendering must be
* initialized before it is added to a container. This causes
* the rendering's control to be created.
- *
+ *
* @param rendering the rendering to add
*/
public void addMemoryRendering(IMemoryRendering rendering);
-
+
/**
- * Removes the given rendering from this container. This
+ * Removes the given rendering from this container. This
* causes the rendering to be disposed.
- *
+ *
* @param rendering the rendering to remove
*/
public void removeMemoryRendering(IMemoryRendering rendering);
-
+
/**
* Returns all renderings currently hosted by this container.
- *
+ *
* @return all renderings currently hosted by this container
*/
public IMemoryRendering[] getRenderings();
-
+
/**
* Returns the active rendering in this container, or <code>null</code>
* if none.
- *
+ *
* @return the active rendering in this container, or <code>null</code>
* if none
*/
public IMemoryRendering getActiveRendering();
-
+
/**
* Returns the label for this container.
- *
+ *
* @return the label for this container
*/
public String getLabel();

Back to the top