Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IRepositionableMemoryRendering.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IRepositionableMemoryRendering.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IRepositionableMemoryRendering.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IRepositionableMemoryRendering.java
index ff755edcd..24cac1aef 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IRepositionableMemoryRendering.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IRepositionableMemoryRendering.java
@@ -17,8 +17,8 @@ import org.eclipse.debug.core.model.MemoryByte;
/**
* A memory rendering that can be repositioned. Reposition behavior is rendering
- * specific. Typically, reposition means that the rendering should move its
- * cursor/current selection to the given address. However, clients may define
+ * specific. Typically, reposition means that the rendering should move its
+ * cursor/current selection to the given address. However, clients may define
* its reposition behavior that is suitable for the rendering.
* <p>
* Clients may implement this interface.
@@ -27,15 +27,15 @@ import org.eclipse.debug.core.model.MemoryByte;
*
*/
public interface IRepositionableMemoryRendering extends IMemoryRendering{
-
+
/**
* Returns the currently selected address of this rendering or <code>null</code> if none
* @return the currently selected address of this rendering or <code>null</code> if none
*/
public BigInteger getSelectedAddress();
-
+
/**
- * Returns the currently selected content as <code>MemoryByte</code> array.
+ * Returns the currently selected content as <code>MemoryByte</code> array.
* Returns an empty array if there is no selection.
* @return the currently selected as <code>MemoryByte</code> array or empty if there is
* no selection.
@@ -44,9 +44,9 @@ public interface IRepositionableMemoryRendering extends IMemoryRendering{
/**
* Position the rendering to the given address.
- *
+ *
* @param address the address to go to
- * @throws DebugException when there is a problem repositioning the rendering to the
+ * @throws DebugException when there is a problem repositioning the rendering to the
* address
*/
public void goToAddress(BigInteger address) throws DebugException ;

Back to the top