1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Remove of getCMemoryBlock() not use.

Remove evaluateExpressionToValue not use.
This commit is contained in:
Alain Magloire 2002-10-20 23:20:59 +00:00
parent b1b68787e3
commit 0f4029f0e6

View file

@ -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.