Skip to main content
summaryrefslogtreecommitdiffstats
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.java8
1 files changed, 4 insertions, 4 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 319770336..56e93490d 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
@@ -32,7 +32,7 @@ public interface IMemoryRenderingSite {
*
* @return the view site hosting memory renderings for this rendering site
*/
- public IWorkbenchPartSite getSite();
+ IWorkbenchPartSite getSite();
/**
* Returns the syncrhonization service for this rendering site
@@ -40,14 +40,14 @@ public interface IMemoryRenderingSite {
*
* @return the syncrhonization service for this rendering site or <code>null</code>
*/
- public IMemoryRenderingSynchronizationService getSynchronizationService();
+ 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();
+ IMemoryRenderingContainer[] getMemoryRenderingContainers();
/**
* Returns the rendering container with the given id or <code>null</code>
@@ -57,7 +57,7 @@ public interface IMemoryRenderingSite {
* @return the rendering container with the given id or <code>null</code>
* if none
*/
- public IMemoryRenderingContainer getContainer(String id);
+ IMemoryRenderingContainer getContainer(String id);
}

Back to the top