Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlock.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlock.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlock.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlock.java
index 7740c8adc..933b1fa89 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlock.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IMemoryBlock.java
@@ -12,7 +12,7 @@ package org.eclipse.debug.core.model;
import org.eclipse.debug.core.DebugException;
-
+
/**
* A contiguous segment of memory in an execution context.
* A memory block is represented by a starting memory address
@@ -25,25 +25,25 @@ import org.eclipse.debug.core.DebugException;
* @since 2.0
*/
public interface IMemoryBlock extends IDebugElement {
-
+
/**
* Returns the start address of this memory block.
- *
+ *
* @return the start address of this memory block
*/
public long getStartAddress();
-
+
/**
* Returns the length of this memory block in bytes.
- *
+ *
* @return the length of this memory block in bytes
- */
+ */
public long getLength();
-
+
/**
* Returns the values of the bytes currently contained
* in this this memory block.
- *
+ *
* @return the values of the bytes currently contained
* in this this memory block
* @exception DebugException if this method fails. Reasons include:
@@ -51,21 +51,21 @@ public interface IMemoryBlock extends IDebugElement {
* status code contains the underlying exception responsible for
* the failure.</li>
* </ul>
- */
+ */
public byte[] getBytes() throws DebugException;
-
+
/**
* Returns whether this memory block supports value modification
- *
+ *
* @return whether this memory block supports value modification
*/
public boolean supportsValueModification();
-
+
/**
* Sets the value of the bytes in this memory block at the specified
* offset within this memory block to the specified bytes.
* The offset is zero based.
- *
+ *
* @param offset the offset at which to set the new values
* @param bytes the new values
* @exception DebugException if this method fails. Reasons include:
@@ -79,6 +79,6 @@ public interface IMemoryBlock extends IDebugElement {
* </ul>
*/
public void setValue(long offset, byte[] bytes) throws DebugException;
-
+
}

Back to the top