Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrievalExtension.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrievalExtension.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrievalExtension.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrievalExtension.java
index f6aea1b55..88eb0b910 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrievalExtension.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlockRetrievalExtension.java
@@ -17,20 +17,20 @@ import org.eclipse.debug.core.DebugException;
/**
* Extended capabilities for memory block retrieval. Supports the retrieval
* of memory blocks based on an expression and context.
- *
+ *
* @since 3.1
*/
public interface IMemoryBlockRetrievalExtension extends IMemoryBlockRetrieval {
-
+
/**
- * Retrieves and returns a memory block.
- *
+ * Retrieves and returns a memory block.
+ *
* @param expression expression to be evaluated to an address
* @param context context for evaluating the expression. This is typically
* a debug element.
* @return a memory block based on the given expression and context
* @throws DebugException if unable to retrieve the specified memory
*/
-
+
public IMemoryBlockExtension getExtendedMemoryBlock(String expression, Object context) throws DebugException;
}

Back to the top