From 0f4029f0e65ea703aeaeb7ccf12e97e1189161b3 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Sun, 20 Oct 2002 23:20:59 +0000 Subject: [PATCH] Remove of getCMemoryBlock() not use. Remove evaluateExpressionToValue not use. --- .../cdt/debug/core/cdi/model/ICDITarget.java | 24 ------------------- 1 file changed, 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 @@ -59,19 +59,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. * @@ -96,17 +83,6 @@ public interface ICDITarget extends ICDIObject { */ ICDIGlobalVariable[] getGlobalVariables() throws CDIException; - /** - * 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.