1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

2004-10-24 Alain Magloire

Provide a context for ICDITarget.evaluateExpressionTtoString()
	* cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java
This commit is contained in:
Alain Magloire 2004-10-22 17:23:18 +00:00
parent 9dffa53757
commit bed0f1da44
2 changed files with 17 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2004-10-24 Alain Magloire
Provide a context for ICDITarget.evaluateExpressionTtoString()
* cdi/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java
2004-10-22 Mikhail Khodjaiants
Fire the suspend event for the current thread on the target creation.
* CDebugTarget.java

View file

@ -38,7 +38,8 @@ public interface ICDITarget extends ICDIThreadGroup, ICDISessionObject {
/**
* Evaluates the expression specified by the given string.
* Returns the evaluation result as a String.
*
*
* @deprecated
* @param - expression string to be evaluated
* @return the result of the evaluation
* @throws CDIException if this method fails. Reasons include:
@ -46,6 +47,17 @@ public interface ICDITarget extends ICDIThreadGroup, ICDISessionObject {
String evaluateExpressionToString(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
* @return the result of the evaluation
* @throws CDIException if this method fails. Reasons include:
*/
String evaluateExpressionToString(ICDIStackFrame context, String expressionText)
throws CDIException;
/**
* Returns whether this target is terminated.
*