Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrieval.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrieval.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrieval.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrieval.java
index 925366297..78f16e775 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrieval.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrieval.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -12,28 +12,28 @@ package org.eclipse.debug.core.model;
import org.eclipse.debug.core.DebugException;
-
+
/**
* Supports the retrieval of arbitrary blocks of memory.
- *
+ *
* @see IMemoryBlock
* @since 2.0
*/
public interface IMemoryBlockRetrieval {
-
+
/**
* Returns whether this debug target supports the retrieval
* of memory blocks.
- *
+ *
* @return whether this debug target supports the retrieval
* of memory blocks
*/
public boolean supportsStorageRetrieval();
-
+
/**
* Returns a memory block that starts at the specified
* memory address, with the specified length.
- *
+ *
* @param startAddress starting address
* @param length length of the memory block in bytes
* @return a memory block that starts at the specified

Back to the top