Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/IFormattedMemoryBlockRow.java')
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/IFormattedMemoryBlockRow.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/IFormattedMemoryBlockRow.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/IFormattedMemoryBlockRow.java
new file mode 100644
index 00000000000..249869a9f4d
--- /dev/null
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/IFormattedMemoryBlockRow.java
@@ -0,0 +1,37 @@
+/*
+ *(c) Copyright QNX Software Systems Ltd. 2002.
+ * All Rights Reserved.
+ *
+ */
+
+package org.eclipse.cdt.debug.core;
+
+/**
+ *
+ * Represents a row in the output table of formatted memory block.
+ *
+ * @since Jul 31, 2002
+ */
+public interface IFormattedMemoryBlockRow
+{
+ /**
+ * Returns the address of this row.
+ *
+ * @return the address of this row
+ */
+ long getAddress();
+
+ /**
+ * Returns the array of memory words.
+ *
+ * @return the array of memory words
+ */
+ String[] getData();
+
+ /**
+ * Returns the ASCII dump for this row.
+ *
+ * @return the ASCII dump for this row
+ */
+ String getASCII();
+}

Back to the top