Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IAddMemoryBlocksTarget.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IAddMemoryBlocksTarget.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IAddMemoryBlocksTarget.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IAddMemoryBlocksTarget.java
index 61f25c9d8..1f5178bb0 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IAddMemoryBlocksTarget.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IAddMemoryBlocksTarget.java
@@ -35,7 +35,7 @@ public interface IAddMemoryBlocksTarget {
* @return <code>true</code> if the add memory block operation can be performed from the given part and selection, <code>false</code> otherwise
* @throws CoreException if unable to perform the action
*/
- public boolean canAddMemoryBlocks(IWorkbenchPart part, ISelection selection) throws CoreException;
+ boolean canAddMemoryBlocks(IWorkbenchPart part, ISelection selection) throws CoreException;
/**
* Returns whether this target will support adding memory block from the specified
@@ -44,7 +44,7 @@ public interface IAddMemoryBlocksTarget {
* @return true if the target wants to support adding memory block from the given
* part, false otherwise.
*/
- public boolean supportsAddMemoryBlocks(IWorkbenchPart part);
+ boolean supportsAddMemoryBlocks(IWorkbenchPart part);
/**
@@ -62,5 +62,5 @@ public interface IAddMemoryBlocksTarget {
* @see org.eclipse.debug.ui.memory.IMemoryRenderingManager
* @see org.eclipse.debug.core.IMemoryBlockManager
*/
- public void addMemoryBlocks(IWorkbenchPart part, ISelection selection) throws CoreException;
+ void addMemoryBlocks(IWorkbenchPart part, ISelection selection) throws CoreException;
}

Back to the top