Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingSite.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingSite.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingSite.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingSite.java
index 027cf5121..319770336 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingSite.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRenderingSite.java
@@ -18,7 +18,7 @@ import org.eclipse.ui.IWorkbenchPartSite;
* <p>
* A rendering site has an optional synchronization provider at any one time. If a
* rendering provides synchronization information it should set itself as the synchronization
- * provider for its memory rendering site when it is activated.
+ * provider for its memory rendering site when it is activated.
* </p>
* <p>
* Clients hosting memory rendering may implement this interface.
@@ -29,26 +29,26 @@ public interface IMemoryRenderingSite {
/**
* Returns the workbench part site hosting memory renderings for this rendering site.
- *
+ *
* @return the view site hosting memory renderings for this rendering site
*/
public IWorkbenchPartSite getSite();
-
+
/**
* Returns the syncrhonization service for this rendering site
* or <code>null</code> if none.
- *
+ *
* @return the syncrhonization service for this rendering site or <code>null</code>
*/
public IMemoryRenderingSynchronizationService getSynchronizationService();
-
+
/**
* Returns all the memory rendering containers within this rendering site.
- *
+ *
* @return all the memory rendering containers within this rendering site
*/
public IMemoryRenderingContainer[] getMemoryRenderingContainers();
-
+
/**
* Returns the rendering container with the given id or <code>null</code>
* if none.
@@ -58,6 +58,6 @@ public interface IMemoryRenderingSite {
* if none
*/
public IMemoryRenderingContainer getContainer(String id);
-
-
+
+
}

Back to the top