Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2002-10-20 23:20:59 +0000
committerAlain Magloire2002-10-20 23:20:59 +0000
commit0f4029f0e65ea703aeaeb7ccf12e97e1189161b3 (patch)
treecb26a4c0c6a131336defc92be71fa77f039fcc70
parentb1b68787e368df37349c492ec753a30e6dc9e4bc (diff)
downloadorg.eclipse.cdt-0f4029f0e65ea703aeaeb7ccf12e97e1189161b3.tar.gz
org.eclipse.cdt-0f4029f0e65ea703aeaeb7ccf12e97e1189161b3.tar.xz
org.eclipse.cdt-0f4029f0e65ea703aeaeb7ccf12e97e1189161b3.zip
Remove of getCMemoryBlock() not use.
Remove evaluateExpressionToValue not use.
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java
index c8876cd71cb..0b5b4715763 100644
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java
@@ -60,19 +60,6 @@ public interface ICDITarget extends ICDIObject {
void setCurrentThread(ICDIThread current) throws CDIException;
/**
- * Returns a memory block that starts at the specified memory
- * address, with the specified length.
- *
- * @param - starting address
- * @param - length of the memory block in bytes
- * @return a memory block that starts at the specified memory address,
- * with the specified length
- * @throws CDIException if this method fails. Reasons include:
- */
- ICDIMemoryBlock getCMemoryBlock(long startAddress, long length)
- throws CDIException;
-
- /**
* Returns the register Object associated with this target.
*
* @return a collection of register object.
@@ -98,17 +85,6 @@ public interface ICDITarget extends ICDIObject {
/**
* Evaluates the expression specified by the given string.
- * Returns the evaluation result as an ICDIValue.
- *
- * @param - expression string to be evaluated
- * @return the result of the evaluation
- * @throws CDIException if this method fails. Reasons include:
- */
- ICDIValue evaluateExpressionToValue(String expressionText)
- throws CDIException;
-
- /**
- * Evaluates the expression specified by the given string.
* Returns the evaluation result as a String.
*
* @param - expression string to be evaluated

Back to the top